Code Monkey home page Code Monkey logo

Comments (6)

funny-falcon avatar funny-falcon commented on August 19, 2024

I certainly could not remove logging. I could change it to something else. I'm open for discussion.

BTW: you could replace output of standard library to any io.Writer : https://golang.org/pkg/log/#SetOutput . Why you didn't do it?

from go-tarantool.

mialinx avatar mialinx commented on August 19, 2024

We could add logger field to the connection, and create default implementation writing to STDERR.
Anyone can change implementation as needed.

from go-tarantool.

tracer0tong avatar tracer0tong commented on August 19, 2024

@mialinx good idea, I have my own customer logger, so I can just define it as a parameter.

from go-tarantool.

funny-falcon avatar funny-falcon commented on August 19, 2024

Do I understand correctly, that all we need is:

type Logger interface {
     Printf(format string, v ...interface{})
}
type defaultLogger struct{}
func (d defaultLogger) Printf(format string, v ...interface{}) {
     log.Printf(format, v...)
}
type Opts struct {
// ....
     Logger Logger
}
func Connect() () {
// ....
    if conn.opts.Logger == nil {
        conn.opts.Logger = defaultLogger{}
    }
}

from go-tarantool.

funny-falcon avatar funny-falcon commented on August 19, 2024

Or we need to extend logger usage (for example, use something similar to pkg/syslog) ?

from go-tarantool.

tracer0tong avatar tracer0tong commented on August 19, 2024

@funny-falcon I think your variant is fine. If conn.opts.Logger == nil, you can use logger from standard logging library.

from go-tarantool.

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.