Skip to content

Commit 3ab506a

Browse files
Merge pull request #6 from objectrocket/SRE-2935
added more logging
2 parents 1b51991 + dc47655 commit 3ab506a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mongodb_consistent_backup/Backup/Mongodump/MongodumpThread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def run(self):
224224
if os.path.isdir(self.dump_dir):
225225
rmtree(self.dump_dir)
226226
os.makedirs(self.dump_dir)
227-
logging.debug("Running mongodump cmd: %s" % " ".join(mongodump_cmd))
227+
logging.info("Running mongodump cmd: %s" % " ".join(mongodump_cmd))
228228
self._process = Popen(mongodump_cmd, stdin=PIPE, stderr=PIPE)
229229
self.wait()
230230
self.exit_code = self._process.returncode

0 commit comments

Comments
 (0)