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
91290b5f
Commit
91290b5f
authored
Jun 11, 2009
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #5262: Improved fix.
parent
83da034c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
Lib/logging/handlers.py
Lib/logging/handlers.py
+11
-11
No files found.
Lib/logging/handlers.py
View file @
91290b5f
...
@@ -172,7 +172,6 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -172,7 +172,6 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
#
#
# Case of the 'when' specifier is not important; lower or upper case
# Case of the 'when' specifier is not important; lower or upper case
# will work.
# will work.
currentTime
=
int
(
time
.
time
())
if
self
.
when
==
'S'
:
if
self
.
when
==
'S'
:
self
.
interval
=
1
# one second
self
.
interval
=
1
# one second
self
.
suffix
=
"%Y-%m-%d_%H-%M-%S"
self
.
suffix
=
"%Y-%m-%d_%H-%M-%S"
...
@@ -203,14 +202,15 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -203,14 +202,15 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
self
.
extMatch
=
re
.
compile
(
self
.
extMatch
)
self
.
extMatch
=
re
.
compile
(
self
.
extMatch
)
self
.
interval
=
self
.
interval
*
interval
# multiply by units requested
self
.
interval
=
self
.
interval
*
interval
# multiply by units requested
self
.
rolloverAt
=
currentTime
+
self
.
interval
self
.
rolloverAt
=
self
.
computeRollover
(
int
(
time
.
time
()))
# If we are rolling over at midnight or weekly, then the interval is already known.
# What we need to figure out is WHEN the next interval is.
self
.
adjustRollover
(
currentTime
)
#print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)
#print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)
def
adjustRollover
(
self
,
currentTime
):
def
computeRollover
(
self
,
currentTime
):
"""
Work out the rollover time based on the specified time.
"""
result
=
currentTime
+
self
.
interval
# If we are rolling over at midnight or weekly, then the interval is already known.
# If we are rolling over at midnight or weekly, then the interval is already known.
# What we need to figure out is WHEN the next interval is. In other words,
# What we need to figure out is WHEN the next interval is. In other words,
# if you are rolling over at midnight, then your base interval is 1 day,
# if you are rolling over at midnight, then your base interval is 1 day,
...
@@ -230,7 +230,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -230,7 +230,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
# r is the number of seconds left between now and midnight
# r is the number of seconds left between now and midnight
r
=
_MIDNIGHT
-
((
currentHour
*
60
+
currentMinute
)
*
60
+
r
=
_MIDNIGHT
-
((
currentHour
*
60
+
currentMinute
)
*
60
+
currentSecond
)
currentSecond
)
self
.
rolloverA
t
=
currentTime
+
r
resul
t
=
currentTime
+
r
# If we are rolling over on a certain day, add in the number of days until
# If we are rolling over on a certain day, add in the number of days until
# the next rollover, but offset by 1 since we just calculated the time
# the next rollover, but offset by 1 since we just calculated the time
# until the next day starts. There are three cases:
# until the next day starts. There are three cases:
...
@@ -253,7 +253,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -253,7 +253,7 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
daysToWait
=
self
.
dayOfWeek
-
day
daysToWait
=
self
.
dayOfWeek
-
day
else
:
else
:
daysToWait
=
6
-
day
+
self
.
dayOfWeek
+
1
daysToWait
=
6
-
day
+
self
.
dayOfWeek
+
1
newRolloverAt
=
self
.
rolloverA
t
+
(
daysToWait
*
(
60
*
60
*
24
))
newRolloverAt
=
resul
t
+
(
daysToWait
*
(
60
*
60
*
24
))
if
not
self
.
utc
:
if
not
self
.
utc
:
dstNow
=
t
[
-
1
]
dstNow
=
t
[
-
1
]
dstAtRollover
=
time
.
localtime
(
newRolloverAt
)[
-
1
]
dstAtRollover
=
time
.
localtime
(
newRolloverAt
)[
-
1
]
...
@@ -262,7 +262,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -262,7 +262,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
newRolloverAt
=
newRolloverAt
-
3600
newRolloverAt
=
newRolloverAt
-
3600
else
:
# DST bows out before next rollover, so we need to add an hour
else
:
# DST bows out before next rollover, so we need to add an hour
newRolloverAt
=
newRolloverAt
+
3600
newRolloverAt
=
newRolloverAt
+
3600
self
.
rolloverAt
=
newRolloverAt
result
=
newRolloverAt
return
result
def
shouldRollover
(
self
,
record
):
def
shouldRollover
(
self
,
record
):
"""
"""
...
@@ -331,8 +332,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -331,8 +332,8 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
#print "%s -> %s" % (self.baseFilename, dfn)
#print "%s -> %s" % (self.baseFilename, dfn)
self
.
mode
=
'w'
self
.
mode
=
'w'
self
.
stream
=
self
.
_open
()
self
.
stream
=
self
.
_open
()
newRolloverAt
=
self
.
rolloverAt
+
self
.
interval
currentTime
=
int
(
time
.
time
())
currentTime
=
int
(
time
.
time
())
newRolloverAt
=
self
.
computeRollover
(
currentTime
)
while
newRolloverAt
<=
currentTime
:
while
newRolloverAt
<=
currentTime
:
newRolloverAt
=
newRolloverAt
+
self
.
interval
newRolloverAt
=
newRolloverAt
+
self
.
interval
#If DST changes and midnight or weekly rollover, adjust for this.
#If DST changes and midnight or weekly rollover, adjust for this.
...
@@ -345,7 +346,6 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
...
@@ -345,7 +346,6 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
else
:
# DST bows out before next rollover, so we need to add an hour
else
:
# DST bows out before next rollover, so we need to add an hour
newRolloverAt
=
newRolloverAt
+
3600
newRolloverAt
=
newRolloverAt
+
3600
self
.
rolloverAt
=
newRolloverAt
self
.
rolloverAt
=
newRolloverAt
self
.
adjustRollover
(
time
.
time
())
class
WatchedFileHandler
(
logging
.
FileHandler
):
class
WatchedFileHandler
(
logging
.
FileHandler
):
"""
"""
...
...
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