You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`DEBUG`|`logging.debug()`| The lowest level. Used for small details. Usually you care about these messages only when diagnosing problems. |
3632
3632
|`INFO`|`logging.info()`| Used to record information on general events in your program or confirm that things are working at their point in the program. |
3633
-
|`WARNING`|`logging.warning()`| Used to indicate a potential problem that doesn’t prevent the program from working but might do so in the future. |
3633
+
|`WARNING`|`logging.warning()`| Used to indicate a potential problem that doesn’t prevent the program from working but might do so in the future. |
3634
3634
|`ERROR`|`logging.error()`| Used to record an error that caused the program to fail to do something. |
3635
3635
|`CRITICAL`|`logging.critical()`| The highest level. Used to indicate a fatal error that has caused oris about to cause the program to stop running entirely. |
0 commit comments