Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
30b8e546
Commit
30b8e546
authored
Mar 07, 2012
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use PEP-8 style in logging example
parent
c3705d3a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Doc/library/logging.rst
Doc/library/logging.rst
+1
-1
No files found.
Doc/library/logging.rst
View file @
30b8e546
...
@@ -159,7 +159,7 @@ instantiated directly, but always through the module-level function
...
@@ -159,7 +159,7 @@ instantiated directly, but always through the module-level function
FORMAT
=
'%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
FORMAT
=
'%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
logging
.
basicConfig
(
format
=
FORMAT
)
logging
.
basicConfig
(
format
=
FORMAT
)
d
=
{
'clientip'
:
'192.168.0.1'
,
'user'
:
'fbloggs'
}
d
=
{
'clientip'
:
'192.168.0.1'
,
'user'
:
'fbloggs'
}
logger
=
logging
.
getLogger
(
'tcpserver'
)
logger
=
logging
.
getLogger
(
'tcpserver'
)
logger
.
warning
(
'Protocol problem: %s'
,
'connection reset'
,
extra
=
d
)
logger
.
warning
(
'Protocol problem: %s'
,
'connection reset'
,
extra
=
d
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment