在 Play 2 中,我使用以下代码获取记录器:
public class LoggerHelper {
public static Logger getLogger() {
final Throwable t = new Throwable();
t.fillInStackTrace();
final String fullClassName = t.getStackTrace()[1].getClassName();
return Logger.getLogger(fullClassName);
}
}
public class MyController {
private final static Logger logger = LoggerHelper.getLogger();
}
在 Play 2 中,我找到的用于获取记录器的代码示例如下所示:
class MyController {
private val log = Logger(classOf[MyController])
...
}
我怎样才能使它不包括类名?