fix recursion
This commit is contained in:
parent
5d740ea98f
commit
faa2553a86
1 changed files with 1 additions and 1 deletions
|
|
@ -351,7 +351,7 @@ class WeeklyLogFile(logfile.DailyLogFile):
|
||||||
|
|
||||||
def rotate(self):
|
def rotate(self):
|
||||||
try:
|
try:
|
||||||
self.rotate()
|
super().rotate()
|
||||||
except Exception:
|
except Exception:
|
||||||
log_trace(f"Could not rotate the log file {self.name}.")
|
log_trace(f"Could not rotate the log file {self.name}.")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue