mirror of
https://github.com/xcat2/confluent.git
synced 2026-03-25 03:39:17 +00:00
Correct missing argument
__new__ was missed in the last commit.
This commit is contained in:
@@ -494,7 +494,7 @@ class Logger(object):
|
||||
False, events will be formatted like syslog:
|
||||
date: message<CR>
|
||||
"""
|
||||
def __new__(cls, logname, console=False, tenant=None):
|
||||
def __new__(cls, logname, console=False, tenant=None, buffered=True):
|
||||
global _loggers
|
||||
if console:
|
||||
relpath = 'consoles/' + logname
|
||||
|
||||
Reference in New Issue
Block a user