arquillian / arquillian-governor

Arquillian Governor
Apache License 2.0
10 stars 11 forks source link

Make all log messages configurable #33

Closed basovnik closed 7 years ago

basovnik commented 7 years ago
bartoszmajsak commented 7 years ago

This is something I would like to have a clarification on as well. I've noticed that in some modules (and probably Core if I'm not mistaken) we have started using sout instead of jul. What is the rationale here? Maybe @aslakknutsen, @smiklosovic or @lordofthejars can shed some light

smiklosovic commented 7 years ago

i try to log by logger, if done otherwise, it is bad on my side. i can not speak for others

basovnik commented 7 years ago

@bartoszmajsak I think we should definitely use loggers for logging. Why? We should allow user to filter logging messages according to the logging level. Next point is that I would prefer slf4j before java.util.logging. Libraries should let user to choose custom implementation of logging framework [1].

[1] http://slf4j.org/faq.html#when