Many times I saw logging of errors like these:
System.out.println("Method aMethod with parameters a:"+a+" b: "+b);
print("Error in line 88");
so.. What are the best practices to log an error?
EDIT:
This is java but could be C/C++, basic, etc.
|
3
|
Many times I saw logging of errors like these:
so.. What are the best practices to log an error? EDIT: This is java but could be C/C++, basic, etc.
|
|||
|
|
|
|
Apache Commons Logging is not intended for applications general logging. It's intended to be used by libraries or APIs that don't want to force a logging implementation on the API's user. There are also classloading issues with Commons Logging. Pick one of the [many] logging api's, the most widely used probably being log4j or the Java Logging API. If you want implementation independence, you might want to consider SLF4J, by the original author of log4j. Having picked an implementation, then use the logging levels/severity within that implementation consistently, so that searching/filtering logs is easier. |
||
|
|
|
Aspect-oriented Programming In Java, I would highly recommend aspect-oriented programming (AOP) to inject logging, with a tool such as AspectJ. Logging and security are two requirements required by most parts of any substantial system (that is, they are cross-cutting concerns). It goes against the DRY principle to litter logging statements throughout the codebase. Even though aspects can be used for much more than logging and security, I would recommend limiting its use to those until comfort and product maturity have been achieved. Once the application is using aspects, the "best practices" for logging (in Java) are hidden: you can change how logging is performed throughout the entire application from a single location. Transitioning from Advantages of Aspect-oriented Programming From http://ecet.ecs.ru.acad.bg/cst/Docs/proceedings/S2/II-19.pdf:
Disdvantages of Aspect-oriented Programming Some problems with AOP include:
Related Websites There are many websites where you can find more information on AOP in general and AOP as it pertains to Java, such as: |
||
|
|
|
|
Logging directly to the console is horrendous and frankly, the mark of a bad developer. The only reason to do this sort of thing is 1) he or she is unaware of other approaches, and/or 2) the developer has not thought one bit about what will happen when his/her code is deployed to a production site, and how the application will be maintained at that point. Dealing with an application that is logging 1GB/day or more of completely unneeded debug logging is maddening. The generally accepted best practice is to use a Logging framework that has concepts of:
The eventual log framework you will use will of course depend on your platform. Some common options:
|
||
|
|
|
|
The apache common logging API as mentioned above is a great resource. Referring back to java, there is also a standard error output stream (System.err). Directly from the Java API:
|
||
|
|
|
|
Some suggested best-practices
|
|||
|
|
|
|
A best practice is to use the java.util.logging framework Then you can log messages in either of these formats
Or
Then you can use a logging.properties (example below) to switch between levels of logging, and do all sorts of clever stuff like logging to files, with rotation etc.
Frameworks like log4j and others should be avoided in my opinion, Java has everything you need already. EDIT This can apply as a general practice for any programming language. Being able to control all levels of logging from a single property file is often very important in enterprise applications. |
|||
|
|
|
|
The easiest way to log errors in a consistent format is to use a logging framework such as Log4j (assuming you're using Java). It is useful to include a logging section in your code standards to make sure all developers know what needs to be logged. The nice thing about most logging frameworks is they have different logging levels so you can control how verbose the logging is between development, test, and production. |
||
|
|
|
|
There really is no best practice for logging an error. It basically just needs to follow a consistent pattern (within the software/company/etc) that provides enough information to track the problem down. For Example, you might want to keep track of the time, the method, parameters, calling method, etc. So long as you dont just print "Error in " |
||
|
|