From 2d87cdcb9ff313851a240449f4dde8038b96c00b Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Mon, 16 Apr 2018 11:22:21 +0100 Subject: [PATCH] env.py,executor.py: Turn warning into info Turn some log warnings in log info as they are just informative messages and not a source of misbehavior. --- libs/utils/env.py | 2 +- libs/utils/executor.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/utils/env.py b/libs/utils/env.py index 8eb826d7e..f7bdeddb5 100644 --- a/libs/utils/env.py +++ b/libs/utils/env.py @@ -893,7 +893,7 @@ class TestEnv(ShareState): return if not force and 'rtapp-calib' in self.conf: - self._log.warning('Using configuration provided RTApp calibration') + self._log.info('Using configuration provided RTApp calibration') self._calib = { int(key): int(value) for key, value in self.conf['rtapp-calib'].items() diff --git a/libs/utils/executor.py b/libs/utils/executor.py index b8e03ac9a..0bf217580 100644 --- a/libs/utils/executor.py +++ b/libs/utils/executor.py @@ -674,7 +674,7 @@ class Executor(): # FTRACE: start (if a configuration has been provided) if self.te.ftrace and self._target_conf_flag(tc, 'ftrace'): - self._log.warning('FTrace events collection enabled') + self._log.info('FTrace events collection enabled') self.te.ftrace.start() # ENERGY: start sampling -- GitLab