You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently LogSink::ToString always uses 0 for the microsecond component of the timestamp. There is a FIXME related to this:
// FIXME(jrvb): Updating this to use the correct value for usecs
// requires changing the signature for both this method and
// LogSink::send(). This change needs to be done in a separate CL
// so subclasses of LogSink can be updated at the same time.
int usecs = 0;
Per the FIXME, it looks like the only way to fix this is by updating the signature of LogSink::send. Any third party LogSink implementations would need to have their signature adjusted. Would such a PR be acceptable?
The text was updated successfully, but these errors were encountered:
I noticed a custom LogSink was logging without microsecond precision:
Currently
LogSink::ToString
always uses 0 for the microsecond component of the timestamp. There is a FIXME related to this:https://github.com/google/glog/blob/v0.3.5/src/logging.cc#L1631-L1635
Per the FIXME, it looks like the only way to fix this is by updating the signature of
LogSink::send
. Any third party LogSink implementations would need to have their signature adjusted. Would such a PR be acceptable?The text was updated successfully, but these errors were encountered: