No handlers could be found for logger

For logging some message through logger, in Python at least one handler should be added to the logger object. By default the debug, warn and other functions in logging module will call basicConfig which in turn will add a StreamHandler to the root logger. It’s always recommended to add your required Handler to your logger … Read more