We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a74a930 commit 879991eCopy full SHA for 879991e
consumer/record_processor.py
@@ -20,7 +20,7 @@
20
'%(asctime)s.%(msecs)03d [%(module)s] %(levelname)s %(funcName)s - %(message)s',
21
'%H:%M:%S'
22
)
23
-handler = handlers.RotatingFileHandler('/app/logs/record_processor.log', maxBytes=1000, backupCount=5)
+handler = handlers.RotatingFileHandler('/app/logs/record_processor.log', maxBytes=10**6, backupCount=5)
24
handler.setLevel(logging.INFO)
25
handler.setFormatter(formatter)
26
logger.addHandler(handler)
0 commit comments