Don't decrease journal messages time precision

Journal messages are produced in sequence one by one and it is
important to keep the order of the messages correct.
Messages are produced with a time marker of a usec precision. Currently
this time is truncated to sec, and it makes it impossible to restore
original order of the messages since there are can be more than one
message per second.
To correct this output journal messages with original usec precision.

Tested: Tested on the AMD EthanolX CRB. Journal messages in Redfish
now have 'Created' data with a usec precision.

Change-Id: I92fc1d211d273c096a84b0996d643ed4dc3f72ed
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
diff --git a/redfish-core/lib/log_services.hpp b/redfish-core/lib/log_services.hpp
index a483a62..b807bc4 100644
--- a/redfish-core/lib/log_services.hpp
+++ b/redfish-core/lib/log_services.hpp
@@ -206,8 +206,7 @@
                          << strerror(-ret);
         return false;
     }
-    entryTimestamp =
-        redfish::time_utils::getDateTimeUint(timestamp / 1000 / 1000);
+    entryTimestamp = redfish::time_utils::getDateTimeUintUs(timestamp);
     return true;
 }