Hey all,
I'm currently working on a Linux daemon written in Java. What is the common naming scheme for logs?
Right now I'm thinking of doing something like:
DEBUG = /var/log/myapp.debug
INFO = /var/log/myapp.info
WARN = /var/log/myapp.warn
ERROR = /var/log/myapp.err
FATAL = /var/log/myapp.err
Does anyone have any opinions / suggestions on the naming scheme? I will accept the answer that I end up going with.
Hopefully this question doesn't get closed since there are other topics similar that are opinion related (like what IDE do you prefer, etc)