summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-11-15 08:38:23 -0500
committerTim Graham <timograham@gmail.com>2013-11-15 08:39:40 -0500
commit3ccc0253f2a29fe6f3227ca96dcab20143188b21 (patch)
tree7222eeb0f2bda88ef72593807339ae2c5c7eb9e9
parent10a09b8e609b93c2b2500368c33d9db81906009b (diff)
Fixed #21425 -- Made order in which loggers are introduced consistent.
Thanks oubiga for the suggestion.
-rw-r--r--docs/topics/logging.txt8
1 files 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: