diff --git a/common/src/util.cpp b/common/src/util.cpp
index a274723b029206f0151b33ddba621aca64bcf7ea..85aa5d38404764a9fedc33069dc0c8f1461e5d51 100644
--- a/common/src/util.cpp
+++ b/common/src/util.cpp
@@ -232,7 +232,7 @@ std::string util::getTime()
 
   std::time(&rawtime);
 
-  std::strftime(buffer, sizeof(buffer), "%H:%M:%S", std::localtime(&rawtime));
+  std::strftime(buffer, sizeof(buffer), "%d/%m/%Y-%H:%M:%S", std::localtime(&rawtime));
   return std::string(buffer);
 }