Come for answers, stay for best practices. All we're missing is you.
This post refers to entries in the SystemOut.log /
When I teach log analysis I spend a few minutes talking about the loggers and which ones to use. Using the loggers inappropriately can create their own problems for support staff.
If the logger is set to DEBUG then it could generate a lot of extra information and lead to the logs rolling over quickly.
This can lead to several problems:
Think carefully if you have to set one of these loggers to DEBUG in the production environment:
If the logger is set too high (e.g. FATAL) then you could lose important information.
Some Maximo loggers are shared by multiple components. So changing the level for the crontask logger to FATAL to stop messages from one crontask could prevent others from logging messages. Child loggers can be set to different levels so it is important to set those correctly.
Copy