Coder Social home page Coder Social logo

Comments (1)

LaurenceLiZhixin avatar LaurenceLiZhixin commented on May 2, 2024

@photowey Thank you for your proposal. I think it is valuable and needs to be done at present.
For the Logger module, I think the framework needs to be developed from two perspectives.

  1. Built-in Logger. We can provide a logger specially used for logging in the framework-level, that is, compared to current implementations, we should adding log level, log location and other basic information on the basis of retaining 'color'.
    This logger can be defined by user.
    We also need to define a interface like:
// Logger is the interface for Logger types
type Logger interface {
	Info(args ...interface{})
	Warn(args ...interface{})
	Error(args ...interface{})
	Debug(args ...interface{})
	Fatal(args ...interface{})

	Infof(fmt string, args ...interface{})
	Warnf(fmt string, args ...interface{})
	Errorf(fmt string, args ...interface{})
	Debugf(fmt string, args ...interface{})
	Fatalf(fmt string, args ...interface{})
}

I suppose this interface can be placed to extension/normal/logger/logger.go

  1. User Logger under extension/normal/logger/impl/. Developers using the framework can inject logger implementation to this logger interface in their code to print app-level logs. The module needs to provide several preset implementation classes, like extension/normal/logger/impl/console_logger extension/normal/logger/impl/file_logger extension/normal/logger/impl/elastic_logger and so on. Each implementation should have special param and logic, for specific usage.

from ioc-golang.

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.