2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Correct missing argument

__new__ was missed in the last commit.
This commit is contained in:
Jarrod Johnson 2017-04-11 15:41:26 -04:00
parent 3cae3ed983
commit e230f803ce

View File

@ -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