Giter Site home page Giter Site logo

Log using UTC time about go-logging HOT 4 OPEN

op avatar op commented on August 18, 2024
Log using UTC time

from go-logging.

Comments (4)

talee avatar talee commented on August 18, 2024

Haven't tried it out, but NewLogBackend(out io.Writer, prefix string, flag int) proxies the flag variable to the standard log library's log.New. The flags supported include UTC time: https://golang.org/pkg/log/#pkg-constants

const (
        // Bits or'ed together to control what's printed.
        // There is no control over the order they appear (the order listed
        // here) or the format they present (as described in the comments).
        // The prefix is followed by a colon only when Llongfile or Lshortfile
        // is specified.
        // For example, flags Ldate | Ltime (or LstdFlags) produce,
        //  2009/01/23 01:23:23 message
        // while flags Ldate | Ltime | Lmicroseconds | Llongfile produce,
        //  2009/01/23 01:23:23.123123 /a/b/c/d.go:23: message
        Ldate         = 1 << iota     // the date in the local time zone: 2009/01/23
        Ltime                         // the time in the local time zone: 01:23:23
        Lmicroseconds                 // microsecond resolution: 01:23:23.123123.  assumes Ltime.
        Llongfile                     // full file name and line number: /a/b/c/d.go:23
        Lshortfile                    // final file name element and line number: d.go:23. overrides Llongfile
        LUTC                          // if Ldate or Ltime is set, use UTC rather than the local time zone
        LstdFlags     = Ldate | Ltime // initial values for the standard logger
)

from go-logging.

khoffrath avatar khoffrath commented on August 18, 2024

@talee LUTC isn't taken into account when the package generates the timestamp.
@clawconduce Please see the referenced pull request to export timeNow.

from go-logging.

clawconduce avatar clawconduce commented on August 18, 2024

That looks good to me, if it's merged I believe this ticket should get closed

from go-logging.

HarshalVoonna avatar HarshalVoonna commented on August 18, 2024
var format = logging.MustStringFormatter(
	`%{shortfile} ▶ %{level:.4s} %{message}`,
)

backend1 := logging.NewBackendFormatter(
	logging.NewLogBackend(&lumberjack.Logger{
		Filename:   "foo-ERROR.log",
		MaxSize:    1, // megabytes
		MaxBackups: 3,
		MaxAge:     1,    // days
		Compress:   true, // disabled by default
	}, "", log.LstdFlags|log.LUTC), format)

this worked for me.

from go-logging.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.