log: drop the JSON checkpoint write's own log line

ServerLogTask/SudLogTask write() fires every log_interval seconds
(plus on run end) - logging it every time was just noise.
This commit is contained in:
2026-07-10 22:35:20 +02:00
parent ce5eb3bc23
commit c750af922a
-1
View File
@@ -143,4 +143,3 @@ class ServerLogTask(ATask):
for name in (filename, self._latest_filename()): for name in (filename, self._latest_filename()):
with open(os.path.join(self.path, name), 'w') as f: with open(os.path.join(self.path, name), 'w') as f:
json.dump(log_data, f, indent='\t') json.dump(log_data, f, indent='\t')
self.log.info('Wrote {} samples to {}'.format(len(self._samples), filename))