Issue 14864: Mention logging.disable(logging.NOTSET) to reset the command in logging module documentation (original) (raw)

In the logging module documentation, nothing tells the user how to undo or reset a call to logging.disable(lvl). From reading the code (python 2.6 version) it seem the correct way to undo disable(lvl) is to call disable(0), but I think calling disable(NOTSET) would make more sense. The sentence I propose to add at the end of the paragraph about the disable() function is:

To undo the effect of a call to logging.disable(lvl), call logging.disable(logging.NOTSET).

(This is my first doc bug report, please feel free to tell me how to improve.)