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
9a0fc97b
Commit
9a0fc97b
authored
Jan 18, 2009
by
Jesse Noller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge cl r68737 to py3k
parent
e1cdfd78
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
24 deletions
+13
-24
Lib/logging/__init__.py
Lib/logging/__init__.py
+10
-0
Lib/multiprocessing/util.py
Lib/multiprocessing/util.py
+0
-24
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/logging/__init__.py
View file @
9a0fc97b
...
...
@@ -98,6 +98,11 @@ raiseExceptions = 1
#
logThreads
=
1
#
# If you don't want multiprocessing information in the log, set this to zero
#
logMultiprocessing
=
1
#
# If you don't want process information in the log, set this to zero
#
...
...
@@ -263,6 +268,11 @@ class LogRecord:
else
:
self
.
thread
=
None
self
.
threadName
=
None
if
logMultiprocessing
:
from
multiprocessing
import
current_process
self
.
processName
=
current_process
().
name
else
:
self
.
processName
=
None
if
logProcesses
and
hasattr
(
os
,
'getpid'
):
self
.
process
=
os
.
getpid
()
else
:
...
...
Lib/multiprocessing/util.py
View file @
9a0fc97b
...
...
@@ -69,34 +69,10 @@ def get_logger():
atexit
.
_exithandlers
.
remove
((
_exit_function
,
(),
{}))
atexit
.
_exithandlers
.
append
((
_exit_function
,
(),
{}))
_check_logger_class
()
_logger
=
logging
.
getLogger
(
LOGGER_NAME
)
return
_logger
def
_check_logger_class
():
'''
Make sure process name is recorded when loggers are used
'''
# XXX This function is unnecessary once logging is patched
import
logging
if
hasattr
(
logging
,
'multiprocessing'
):
return
logging
.
_acquireLock
()
try
:
OldLoggerClass
=
logging
.
getLoggerClass
()
if
not
getattr
(
OldLoggerClass
,
'_process_aware'
,
False
):
class
ProcessAwareLogger
(
OldLoggerClass
):
_process_aware
=
True
def
makeRecord
(
self
,
*
args
,
**
kwds
):
record
=
OldLoggerClass
.
makeRecord
(
self
,
*
args
,
**
kwds
)
record
.
processName
=
current_process
().
_name
return
record
logging
.
setLoggerClass
(
ProcessAwareLogger
)
finally
:
logging
.
_releaseLock
()
def
log_to_stderr
(
level
=
None
):
'''
Turn on logging and add a handler which prints to stderr
...
...
Misc/NEWS
View file @
9a0fc97b
...
...
@@ -132,6 +132,9 @@ Core and Builtins
Library
-------
- Issue #4301: Patch the logging module to add processName support, remove
_check_logger_class from multiprocessing.
- Issue #3325: Remove python2.x try: except: imports for old cPickle from
multiprocessing.
...
...
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