From 3ccc0253f2a29fe6f3227ca96dcab20143188b21 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 15 Nov 2013 08:38:23 -0500 Subject: [PATCH] Fixed #21425 -- Made order in which loggers are introduced consistent. Thanks oubiga for the suggestion. --- docs/topics/logging.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/topics/logging.txt b/docs/topics/logging.txt index 3a0c09de1d..f4c1043eb4 100644 --- a/docs/topics/logging.txt +++ b/docs/topics/logging.txt @@ -178,11 +178,11 @@ Making logging calls The logger instance contains an entry method for each of the default log levels: -* ``logger.critical()`` -* ``logger.error()`` -* ``logger.warning()`` -* ``logger.info()`` * ``logger.debug()`` +* ``logger.info()`` +* ``logger.warning()`` +* ``logger.error()`` +* ``logger.critical()`` There are two other logging calls available: