base_job: Removing some state file debug messages

With recent changes on base_job code:

 * Each time a state file is written, a debug message is printed
 * Each time the in-memory state is replaced by on-disk state,
   a debug message is printed

Since the above 2 operations happen *a lot* during a client
execution, we get an abnormally high number of messages
regarding those events, distracting the user from other
relevant events. So my proposal is to just get rid of those
debug messages.

Signed-off-by: Lucas Meneghel Rodrigues <lmr@redhat.com>


git-svn-id: http://test.kernel.org/svn/autotest/trunk@4209 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/common_lib/base_job.py b/client/common_lib/base_job.py
index a2469cb..1e0625f 100644
--- a/client/common_lib/base_job.py
+++ b/client/common_lib/base_job.py
@@ -244,8 +244,6 @@
         else:
             # just replace the in-memory state with the on-disk state
             self._state = on_disk_state
-            logging.debug('Replacing in-memory state with on-disk state '
-                          'from %s', file_path)
 
         # lock the backing file before we refresh it
         with_backing_lock(self.__class__._write_to_backing_file)(self)
@@ -265,7 +263,6 @@
             pickle.dump(self._state, outfile, self.PICKLE_PROTOCOL)
         finally:
             outfile.close()
-        logging.debug('Persistent state flushed to %s', file_path)
 
 
     def _read_from_backing_file(self):