logreader: remove log path print

old-commit-hash: 01b99eae35906ba95c25c2498b19a53a0e8fc591
This commit is contained in:
Adeeb Shihadeh
2021-11-29 13:44:20 -08:00
parent 561052bed4
commit 6c90a5d445

View File

@@ -26,7 +26,6 @@ class MultiLogIterator(object):
def _log_reader(self, i):
if self._log_readers[i] is None and self._log_paths[i] is not None:
log_path = self._log_paths[i]
print("LogReader:%s" % log_path)
self._log_readers[i] = LogReader(log_path)
return self._log_readers[i]