InterviewSolution
| 1. |
Explain Logging Features Of Atg? |
|
Answer» Any component whose base class implements “ApplicationLogging” Interface can use atg logging infrastructure. Logging can be DONE per-component, per-module/per-application basis. Error, Warning,Info & Debug messages are the VARIOUS logging mechanisms.First three are logged by DEFAULT, whereas the Debug messages are just for debugging purpose and should be REMOVED when the CODE goes into production.Logging is managed using the “GLOBAL.properties” file, which specfies the log levels of various modules. Any component whose base class implements “ApplicationLogging” Interface can use atg logging infrastructure. Logging can be done per-component, per-module/per-application basis. Error, Warning,Info & Debug messages are the various logging mechanisms.First three are logged by default, whereas the Debug messages are just for debugging purpose and should be removed when the code goes into production.Logging is managed using the “GLOBAL.properties” file, which specfies the log levels of various modules. |
|