Giter VIP home page Giter VIP logo

Comments (3)

lengpucheng avatar lengpucheng commented on June 11, 2024 1

I have tried adding the Init() method in the log package to specifically print the information in the init function, and defining a writer to control its output position. By controlling the writer, I can control the display of the log, such as the following solution:
Core/logs/log.go

var InitOut = NewLogger()
func Init(f interface{}, v ...interface{}) {
	if InitOut != nil {
		_, _ = fmt.Fprintf(beeLogger, formatPattern(f, v...), v...)
	}
}

Core/config/ini.go

func init() {
	Register("ini", &IniConfig{})

	err := InitGlobalInstance("ini", "conf/app.conf")
	if err != nil {
		logs.Init("init global config instance failed. If you do not use this, just ignore it. ", err)
	}
}

However, due to the inability to control the order in which the init function is executed, it cannot be guaranteed that modifications to InitOut will always be executed before the init function in 'ini. go'. Therefore, this solution is also unable to control the display of the message.

from beego.

lengpucheng avatar lengpucheng commented on June 11, 2024

My beego version is v2.1.5

from beego.

github-actions avatar github-actions commented on June 11, 2024

This issue is inactive for a long time.

from beego.

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.