Skip to content

v0.2.48..v0.2.49 changeset ConvertCmd.cpp

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/cmd/ConvertCmd.cpp b/hoot-core/src/main/cpp/hoot/core/cmd/ConvertCmd.cpp
index e7edf8b..17a0dd9 100644
--- a/hoot-core/src/main/cpp/hoot/core/cmd/ConvertCmd.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/cmd/ConvertCmd.cpp
@@ -109,13 +109,13 @@ public:
     const qint64 timeElapsed = timer.elapsed();
     if (timeElapsed > 60000)
     {
-      msg += QString::number(timeElapsed / 1000 / 60) + " minutes";
+      msg += QString::number(timeElapsed / 1000 / 60) + " total minutes";
     }
     else
     {
-      msg += QString::number(timeElapsed / 1000) + " seconds";
+      msg += QString::number(timeElapsed / 1000) + " total seconds";
     }
-    LOG_DEBUG(msg);
+    LOG_INFO(msg);
 
     return 0;
   }
Clone this wiki locally