[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: