From e5205687e3b7d3b3328930463fd6807b35fd2959 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= <sybren@stuvel.eu>
Date: Thu, 15 Nov 2018 12:35:40 +0100
Subject: [PATCH] Don't log 'unable to find remaining time', it's too spammy

---
 flamenco_worker/commands.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flamenco_worker/commands.py b/flamenco_worker/commands.py
index e3b66647..1557ca4e 100644
--- a/flamenco_worker/commands.py
+++ b/flamenco_worker/commands.py
@@ -744,7 +744,7 @@ class BlenderRenderCommand(AbstractSubprocessCommand):
                 fmt = 'Fra:{fra} Mem:{mem} | Time:{time_sec} | Remaining:{remaining_sec} | {status}'
                 activity = fmt.format(**render_info)
             else:
-                self._log.debug('Unable to find remaining time in line: %s', line)
+                # self._log.debug('Unable to find remaining time in line: %s', line)
                 activity = line
             await self.worker.register_task_update(activity=activity)
 
-- 
GitLab