This is an automated email from the ASF dual-hosted git repository.
rmiddleton pushed a commit to branch LOGCXX-514
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git
The following commit(s) were added to refs/heads/LOGCXX-514 by this push:
new c9397936 change type of chronoTimeStamp
c9397936 is described below
commit c93979365cb0a2a6b2ed889934e92773b3cb6a2d
Author: Robert Middleton <[email protected]>
AuthorDate: Thu Dec 1 20:23:15 2022 -0500
change type of chronoTimeStamp
---
src/main/cpp/loggingevent.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/cpp/loggingevent.cpp b/src/main/cpp/loggingevent.cpp
index 455add52..adba3c43 100644
--- a/src/main/cpp/loggingevent.cpp
+++ b/src/main/cpp/loggingevent.cpp
@@ -141,7 +141,7 @@ struct LoggingEvent::LoggingEventPrivate
*/
const LogString& threadUserName;
- std::chrono::time_point<std::chrono::high_resolution_clock>
chronoTimeStamp;
+ std::chrono::time_point<std::chrono::system_clock> chronoTimeStamp;
};
IMPLEMENT_LOG4CXX_OBJECT(LoggingEvent)