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
The Object "logger" as Logger instance on either case will NEVER get a working Handler and Formatter upon initialization. This is because logging.basicConfig() in (current) line 235 evaluates the list object Logger.handlers instead of the integer number Logger.hasHandlers().
NOTE: Initialization of a date format of type "asctime" within micropython, as shown in the code above, is not (yet) supported (by design) and thus requires explicit implementation efforts.
The text was updated successfully, but these errors were encountered:
Aiming to add minimalistic logging capabilities soon within starting phase of a micropythion program, one would call:
Aiming to get a fancy timestamp and information ordering, the call could look like:
The Object "logger" as Logger instance on either case will NEVER get a working Handler and Formatter upon initialization. This is because
logging.basicConfig()
in (current) line 235 evaluates the list objectLogger.handlers
instead of the integer numberLogger.hasHandlers()
.NOTE: Initialization of a date format of type "asctime" within micropython, as shown in the code above, is not (yet) supported (by design) and thus requires explicit implementation efforts.
The text was updated successfully, but these errors were encountered: