I\'m using Play 2.1. I\'m using the default logger play.api.Logger. I\'m confused about how it works.
In my scala code, a line in class \"com.myapp.tickets\" in th
%class{0} will only output the class name, so instead of:
com.something.MyClass
You'll get:
MyClass
This is how my pattern for logback normally looks:
%d{HH:mm:ss} [%thread] %-5p %class{0} - %m%n
You can also add the method and the line if you are interested by doing:
%d{HH:mm:ss} [%thread] %-5p %class{0}.%method:%L - %m%n