Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
d364a075
Kaydet (Commit)
d364a075
authored
Mar 13, 2006
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added logThreads and logProcesses to allow conditional omission of logging this information
üst
6da8cebe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
__init__.py
Lib/logging/__init__.py
+12
-2
No files found.
Lib/logging/__init__.py
Dosyayı görüntüle @
d364a075
...
...
@@ -89,6 +89,16 @@ _startTime = time.time()
#
raiseExceptions
=
1
#
# If you don't want threading information in the log, set this to zero
#
logThreads
=
1
#
# If you don't want process information in the log, set this to zero
#
logProcesses
=
1
#---------------------------------------------------------------------------
# Level related stuff
#---------------------------------------------------------------------------
...
...
@@ -243,13 +253,13 @@ class LogRecord:
self
.
created
=
ct
self
.
msecs
=
(
ct
-
long
(
ct
))
*
1000
self
.
relativeCreated
=
(
self
.
created
-
_startTime
)
*
1000
if
thread
:
if
logThreads
and
thread
:
self
.
thread
=
thread
.
get_ident
()
self
.
threadName
=
threading
.
currentThread
()
.
getName
()
else
:
self
.
thread
=
None
self
.
threadName
=
None
if
hasattr
(
os
,
'getpid'
):
if
logProcesses
and
hasattr
(
os
,
'getpid'
):
self
.
process
=
os
.
getpid
()
else
:
self
.
process
=
None
...
...
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