Giter Site home page Giter Site logo

Timestamp appears two times about go-logging HOT 3 CLOSED

op avatar op commented on July 19, 2024
Timestamp appears two times

from go-logging.

Comments (3)

op avatar op commented on July 19, 2024

Where does the first timestamp come from? Maybe you're using a logger that adds a timestamp too (eg. check the flags you're passing to the file logger).

from go-logging.

oves avatar oves commented on July 19, 2024

It looks like the first timestamp is always present in the output and comes from "default" formatter.
I have modified the Full Example:

package main

import (
    "github.com/op/go-logging"
)

var log = logging.MustGetLogger("test")

func main() {
    // Customize the output format
    logging.SetFormatter(logging.MustStringFormatter("▶ %{time:20060102-15:04:05.000} %{level:.1s} 0x%{id:x} %{message}"))

    // Run one with debug setup for "test" and one with error.
    for _, level := range []logging.Level{logging.DEBUG, logging.ERROR} {
        logging.SetLevel(level, "test")

        log.Critical("crit")
        log.Error("err")
        log.Warning("warning")
        log.Notice("notice")
        log.Info("info")
        log.Debug("debug %s", "secret")
    }
}

and got following output:

2013/12/17 11:45:48 ▶ 20131217-11:45:48.053 C 0x1 crit
2013/12/17 11:45:48 ▶ 20131217-11:45:48.054 E 0x2 err
2013/12/17 11:45:48 ▶ 20131217-11:45:48.054 W 0x3 warning
2013/12/17 11:45:48 ▶ 20131217-11:45:48.055 N 0x4 notice
2013/12/17 11:45:48 ▶ 20131217-11:45:48.056 I 0x5 info
2013/12/17 11:45:48 ▶ 20131217-11:45:48.056 D 0x6 debug secret
2013/12/17 11:45:48 ▶ 20131217-11:45:48.057 C 0x7 crit
2013/12/17 11:45:48 ▶ 20131217-11:45:48.057 E 0x8 err

All I need is to add millisecond to the timestamp.

Thank you for your help.

from go-logging.

op avatar op commented on July 19, 2024

Yes, you'll need to set the logger to use. Try something like this;

logging.SetBackend(logging.NewLogBackend(os.Stderr, "", 0))

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.