sanyaade-speechtools / delphi-museum-project

Automatically exported from code.google.com/p/delphi-museum-project
0 stars 0 forks source link

Rewrite logging infrastructure to use a real logger #186

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
SLF4J is a nice tool  with upside flexibility.
http://www.slf4j.org/manual.html

We can choose our logger, but may change our mind, which is easier with
this. In addition, the parameterized logging is a nice extension.

OTOH, Log4J does what we need for most cases, and we'll likely have to bind
to it anyway to deal with the configuration of files.
http://logging.apache.org/log4j/1.2/manual.html
With appenders and inherited loggers, we can define output for the user
that is also sent to the log file, without sending all debug output to the
user. This may be harder to do with the facade.

Rating high severity because of impact on feedback to user. 

Original issue reported on code.google.com by LudicrousResearcher@gmail.com on 7 Jul 2009 at 10:01