I am working with log4cpp. Is there a way to print the timestamps/dates in log4cpp converted to GMT/UTC timezone ?
At the moment I use %d which currently prints out the local time, however I want this in UTC/GMT.
I am working with log4cpp. Is there a way to print the timestamps/dates in log4cpp converted to GMT/UTC timezone ?
At the moment I use %d which currently prints out the local time, however I want this in UTC/GMT.
Copyright © 2021 Jogjafile Inc.
According to this old thread, there is no support:
That is at odds with documentation claiming that %d prints UTC, and %D local time.
So I checked the code in log4cpp-1.1.3.tar.gz for the facts. It looks like it's always
localtime
:Perhaps you could simply patch that line to use
gmtime
instead.