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
Logging using the module name can assist with clear logging by labeling messages with module name and providing the ability to set log level per module (helpful for downstream users). Suggest using something like:
hashstore/src/hashstore/filehashstore.py
Line 87 in 294b4fe
Logging using the module name can assist with clear logging by labeling messages with module name and providing the ability to set log level per module (helpful for downstream users). Suggest using something like:
Then using
getLogger()
within the code to get a logger instance per class or when needed. e.g.:The text was updated successfully, but these errors were encountered: