Comment 2 for bug 1662896

Revision history for this message
Lucas Alvares Gomes (lucasagomes) wrote :

@Bruno,

I disagree that we should wait for 1.0 for this. Hard-coding configuration is never a good solution and, it (should) take(s) 2 lines of code to enable the debug level log in any python library, e.g:

 import logging
 logging.getLogger('redfish').setLevel(logging.DEBUG)

That's it, anyone testing/developing the library will now have access to the debug logs. It just needs to be documented properly.