the current codebase is using print statements for logging processes and updates using print()
benefits of using built in logging module instead of print():
- good supports log levels like :
DEBUG, INFO, WARNING, ERROR, CRITICAL
- easy to see where and when (even what line number) a logging call is being made from
I'd be happy to take this up and raise a PR if approved and assigned to me
@shemos @ashutosh091
the current codebase is using print statements for logging processes and updates using print()
benefits of using built in
loggingmodule instead of print():DEBUG,INFO,WARNING,ERROR,CRITICALI'd be happy to take this up and raise a PR if approved and assigned to me
@shemos @ashutosh091