我正在使用Play Framework 2.3.8
,我正在尝试按照文档here
所以基本上;
import play.api.Loggger
case class LoggedClass(someVal: String) {
val logger = Logger("[LoggedClass]")
def someFunc = logger.debug("Hello there!") // nothing in the log file
}
但是,正是这样;
case class LoggedClass(someVal: String) {
val logger = Logger
def someFunc = logger.debug("Hello there!") // does all the logging
}
这是一个已知的错误吗?文档似乎说这应该可行但我在IDE的o / p控制台中什么也看不到,也没有在日志文件中看到任何内容。