Skip to content

Commit 4960104

Browse files
committed
reduncdancy removed in language
1 parent d54bc4a commit 4960104

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/python/logging.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)