diff --git a/daemon/logger/local/local.go b/daemon/logger/local/local.go index bc380ec5b7..252d79500d 100644 --- a/daemon/logger/local/local.go +++ b/daemon/logger/local/local.go @@ -187,7 +187,7 @@ func messageToProto(msg *logger.Message, proto *logdriver.LogEntry, partial *log func protoToMessage(proto *logdriver.LogEntry) *logger.Message { msg := &logger.Message{ Source: proto.Source, - Timestamp: time.Unix(0, proto.TimeNano), + Timestamp: time.Unix(0, proto.TimeNano).UTC(), } if proto.Partial { var md backend.PartialLogMetaData