File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ sidebar_label: Logging Convention
1010* ` logging ` is always a must. Use the following levels as required:
1111 - ** DEBUG** : log parameters and arguments. Information needed when we need to debug or develop. Should be avoided in production.
1212 - ** INFO** : log basic information such as function entry, file being processed et al
13- - ** WARN** : log user security and other warnings that are not critical
14- - ** ERROR** : error related logs. Use exception method to log tracebacks in case of exceptions .
13+ - ** WARN** : log user security and other warnings that may require attention or may need to be avoided.
14+ - ** ERROR** : errors in programs .
1515 - ** CRITICAL** : blocking issues or immediate attention issues.
1616* ** ERROR and CRITICAL** levels should be mitigated and informed.
1717* ` logger ` is used for naming single logger. Use ` NAME_logger ` name for more than one logger when required.
You can’t perform that action at this time.
0 commit comments