Giter Site home page Giter Site logo

Comments (4)

op avatar op commented on July 19, 2024

That's not currently possible. You would need to create a new backend that writes to a new file based on the Module in the Record.
https://github.com/op/go-logging/blob/master/logger.go#L43

from go-logging.

op avatar op commented on July 19, 2024

Feel free to submit the code once it's finished though!

from go-logging.

lud4ik avatar lud4ik commented on July 19, 2024

I' sorry, but can you help, please, because I have a mess
I create separat backends each with different file, but they log to each of them

    var logBackends []logging.Backend
    for _, logName := range cfg.LogFiles {
        name := fmt.Sprintf("%s/%s-%s.log",
                            cfg.LogDir, lg.prefix, logName)
        logFile, err := reopen.NewFileWriter(name)
        if err != nil {
            CloseFiles(lg.logFiles)
            return nil, err
        }
        lg.logFiles = append(lg.logFiles, logFile)
        formatter = logFormat

        b := logging.NewBackendFormatter(logging.NewLogBackend(logFile, "", 0),
                                         logging.MustStringFormatter(formatter))
        bLeveled := logging.AddModuleLevel(b)
        bLeveled.SetLevel(logLevel, logName)
        logBackends = append(logBackends, bLeveled)
    }

    if cfg.LogDebugMode {
        b := logging.NewBackendFormatter(logging.NewLogBackend(os.Stderr, "", 0),
                                  logging.MustStringFormatter(coloredLogFormat))
        logBackends = append(logBackends, b)
    }
    logging.SetBackend(logBackends...)

What am I doing wrong?

from go-logging.

lud4ik avatar lud4ik commented on July 19, 2024

Sorry, I got, I needed to do

bLeveled.SetLevel(-1, "")

to filter records for other modules, right?
It works 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.