Commit f16cbf7e by serpucga

An additional pair of msgs to indicate end of successful execution in verbose mode

parent 19681c8e
...@@ -97,6 +97,7 @@ task_queue.put((-1, "END")) ...@@ -97,6 +97,7 @@ task_queue.put((-1, "END"))
if globals.timing: if globals.timing:
time1 = time.time() time1 = time.time()
utils.generate_metadata_file(output_dir) utils.generate_metadata_file(output_dir)
logger.info("Metadata file created")
if globals.timing: if globals.timing:
logger.critical( logger.critical(
"Time spent generating metadata file: {}s" "Time spent generating metadata file: {}s"
...@@ -104,3 +105,5 @@ if globals.timing: ...@@ -104,3 +105,5 @@ if globals.timing:
logger.critical( logger.critical(
"Total execution time: {}s" "Total execution time: {}s"
.format(time.time() - time0)) .format(time.time() - time0))
logger.info("Conversion completed successfully!!")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment