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. Usedfor small details. Usually you care about these messages only when diagnosing problems.|
3632
3632
|`INFO`|`logging.info()`| Used to record information on general eventsin your programor confirm that things are working at their pointin the program.|
3633
-
|`WARNING`|`logging.warning()`| Used to indicate a potential problem that doesn’t prevent the programfrom working but might do soin the future.|
3633
+
|`WARNING`|`logging.warning()`| Used to indicate a potential problem that doesn’t prevent the programfrom working but might do soin 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 causedoris about to cause the program to stop running entirely.|