diff --git a/confluent_server/confluent/log.py b/confluent_server/confluent/log.py index 5ba577ee..9ff001c5 100644 --- a/confluent_server/confluent/log.py +++ b/confluent_server/confluent/log.py @@ -197,7 +197,7 @@ class TimedAndSizeRotatingFileHandler(BaseRotatingHandler): self.when = conf.get_option('log', 'when').upper() except (AttributeError): self.when = 'D' - self.backupCount = conf.get_int_option('log', 'backup_count') or 3 + self.backupCount = conf.get_int_option('log', 'backup_count') or 0 self.maxBytes = conf.get_int_option( 'log','max_bytes') or 4 * 1024 * 1024 * 1024 if self.maxBytes < 8192: