Please add support of Any type in logging functions, this should be easy and would be very convenient.
import com.typesafe.scalalogging.StrictLogging
object Main extends App with StrictLogging {
println(1) // works fine
logger.info(1) // causes compiler error
}