Logging is configured In nappy using logging.basicConfig(). When applying nappy in other applications with their own logging configuration, this lead to conflicts.
For scripts in nappy logging might be configured only subsequent ...
if __name__ == '__main__':
# configure logging
# logging.basicConfig(level=logging.INFO)
...
Logging is configured In nappy using
logging.basicConfig()
. When applying nappy in other applications with their own logging configuration, this lead to conflicts.For scripts in nappy logging might be configured only subsequent ...