remove debug log spam

This commit is contained in:
tim
2024-08-04 21:54:09 -04:00
parent 01553ae342
commit 8ba11ec4d0

View File

@@ -161,7 +161,7 @@ class OHLCFile:
self.file.write(data) self.file.write(data)
# rewind our file cursor to the beginning of the current row # rewind our file cursor to the beginning of the current row
self.file.seek(start_of_current_row) self.file.seek(start_of_current_row)
log.debug(f'flushing {self.filename}') # log.debug(f'flushing {self.filename}')
self.file.flush() self.file.flush()
def _load(self, earliest_change): def _load(self, earliest_change):