commit | da69db2a1d94c5d3ca78aa26f39ab2107c7c6179 | [log] [tgz] |
---|---|---|
author | Zack Williams <zdw@opennetworking.org> | Tue Jan 29 16:44:52 2019 -0700 |
committer | Zack Williams <zdw@opennetworking.org> | Tue Feb 12 09:41:39 2019 -0700 |
tree | 3240ba8f3a63a140dceacb02b87789db61a510cd | |
parent | 004f2385db34544953096e071b6179fc4af1508a [diff] [blame] |
[SEBA-314] Remove the trace log level Change-Id: I76a644e2f8f095b53799e9380b8930f6c4c96abb
diff --git a/lib/xos-synchronizer/xossynchronizer/pull_step_engine.py b/lib/xos-synchronizer/xossynchronizer/pull_step_engine.py index ece77bc..a58bfa2 100644 --- a/lib/xos-synchronizer/xossynchronizer/pull_step_engine.py +++ b/lib/xos-synchronizer/xossynchronizer/pull_step_engine.py
@@ -40,7 +40,7 @@ self.run_once() def run_once(self): - log.trace("Starting pull steps", steps=self.steps) + log.debug("Starting pull steps", steps=self.steps) threads = [] for step in self.steps: @@ -53,7 +53,7 @@ for t in threads: t.join() - log.trace("Done with pull steps", steps=self.steps) + log.debug("Done with pull steps", steps=self.steps) class XOSPullStepEngine: