﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
21425	Logging documentation improvement	Pablo Oubiña	nobody	"'''Now https://docs.djangoproject.com/en/dev/topics/logging/ says''':

"" Python defines the following log levels:

    DEBUG: Low level system information for debugging purposes
    INFO: General system information
    WARNING: Information describing a minor problem that has occurred.
    ERROR: Information describing a major problem that has occurred.
    CRITICAL: Information describing a critical problem that has occurred.

[...]

The logger instance contains an entry method for each of the default log levels:

    logger.critical()
    logger.error()
    logger.warning()
    logger.info()
    logger.debug() ""

'''My proposals are''':

"" Python defines the following log levels:

    CRITICAL: Information describing a critical problem that has occurred.
    ERROR: Information describing a major problem that has occurred.
    WARNING: Information describing a minor problem that has occurred.
    INFO: General system information.
    DEBUG: Low level system information for debugging purposes.

[...]

The logger instance contains an entry method for each of the default log levels:

    logger.critical()
    logger.error()
    logger.warning()
    logger.info()
    logger.debug() ""

'''or''':

"" Python defines the following log levels:

    DEBUG: Low level system information for debugging purposes
    INFO: General system information
    WARNING: Information describing a minor problem that has occurred.
    ERROR: Information describing a major problem that has occurred.
    CRITICAL: Information describing a critical problem that has occurred.

[...]

The logger instance contains an entry method for each of the default log levels:

    logger.debug()   
    logger.info() 
    logger.warning()
    logger.error()
    logger.critical() ""

"	Cleanup/optimization	closed	Documentation	dev	Normal	fixed	logging, levels, log,		Accepted	0	0	0	0	1	0
