mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-07-23 22:54:10 -06:00
queuelogger: Automatically roll log file
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
8920479f85
commit
839725e3c5
2 changed files with 4 additions and 7 deletions
|
@ -1,9 +1,9 @@
|
|||
# Code to implement asynchronous logging from a background thread
|
||||
#
|
||||
# Copyright (C) 2016 Kevin O'Connor <kevin@koconnor.net>
|
||||
# Copyright (C) 2016,2017 Kevin O'Connor <kevin@koconnor.net>
|
||||
#
|
||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||
import logging, threading, Queue
|
||||
import logging, logging.handlers, threading, Queue
|
||||
|
||||
# Class to forward all messages through a queue to a background thread
|
||||
class QueueHandler(logging.Handler):
|
||||
|
@ -38,8 +38,8 @@ class QueueListener(object):
|
|||
self.thread.join()
|
||||
|
||||
def setup_bg_logging(filename, debuglevel):
|
||||
logoutput = open(filename, 'wb')
|
||||
handler = logging.StreamHandler(logoutput)
|
||||
handler = logging.handlers.TimedRotatingFileHandler(
|
||||
filename, when='midnight', backupCount=5)
|
||||
ql = QueueListener(handler)
|
||||
qh = QueueHandler(ql.queue)
|
||||
root = logging.getLogger()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue