File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ Logging Cookbook
7
7
:Author: Vinay Sajip <vinay_sajip at red-dove dot com>
8
8
9
9
This page contains a number of recipes related to logging, which have been found
10
- useful in the past.
10
+ useful in the past. For links to tutorial and reference information, please see
11
+ :ref: `cookbook-ref-links `.
11
12
12
13
.. currentmodule :: logging
13
14
@@ -3075,3 +3076,23 @@ the :ref:`existing mechanisms <context-info>` for passing contextual
3075
3076
information into your logs and restrict the loggers created to those describing
3076
3077
areas within your application (generally modules, but occasionally slightly
3077
3078
more fine-grained than that).
3079
+
3080
+ .. _cookbook-ref-links :
3081
+
3082
+ Other resources
3083
+ ---------------
3084
+
3085
+ .. seealso ::
3086
+
3087
+ Module :mod: `logging `
3088
+ API reference for the logging module.
3089
+
3090
+ Module :mod: `logging.config `
3091
+ Configuration API for the logging module.
3092
+
3093
+ Module :mod: `logging.handlers `
3094
+ Useful handlers included with the logging module.
3095
+
3096
+ :ref: `Basic Tutorial <logging-basic-tutorial >`
3097
+
3098
+ :ref: `Advanced Tutorial <logging-advanced-tutorial >`
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ Logging HOWTO
8
8
9
9
.. currentmodule :: logging
10
10
11
+ This page contains tutorial information. For links to reference information and a
12
+ logging cookbook, please see :ref: `tutorial-ref-links `.
13
+
11
14
Basic Logging Tutorial
12
15
----------------------
13
16
@@ -1109,6 +1112,11 @@ Also note that the core logging module only includes the basic handlers. If
1109
1112
you don't import :mod: `logging.handlers ` and :mod: `logging.config `, they won't
1110
1113
take up any memory.
1111
1114
1115
+ .. _tutorial-ref-links :
1116
+
1117
+ Other resources
1118
+ ---------------
1119
+
1112
1120
.. seealso ::
1113
1121
1114
1122
Module :mod: `logging `
You can’t perform that action at this time.
0 commit comments