Giter Site home page Giter Site logo

Set Logging Level about go-logging HOT 5 OPEN

rdhillbb avatar rdhillbb commented on June 21, 2024
Set Logging Level

from go-logging.

Comments (5)

utkudarilmaz avatar utkudarilmaz commented on June 21, 2024 1

Try this

stdout := logging.NewLogBackend(os.Stdout, "", 0)

format := logging.MustStringFormatter(`%{color}%{time:15:04:05.000} %{shortfunc} ▶ %{level:.5s} %{id:03x}%{color:reset} %{message}`)
logging.SetFormatter(format)

levelBackend := logging.AddModuleLevel(stdout)
switch strings.ToUpper(*LOG_LEVEL) {
case "CRITICAL":
	levelBackend.SetLevel(logging.CRITICAL, "")
case "ERROR":
	levelBackend.SetLevel(logging.ERROR, "")
case "WARN":
	levelBackend.SetLevel(logging.WARNING, "")
case "NOTICE":
	levelBackend.SetLevel(logging.NOTICE, "")
case "DEBUG":
	levelBackend.SetLevel(logging.DEBUG, "")
default:
	levelBackend.SetLevel(logging.INFO, "")
}

logging.SetBackend(levelBackend)

from go-logging.

baloo32 avatar baloo32 commented on June 21, 2024

Yes, you need to pass the constant (logging.DEBUG / logging.INFO) and the name of your logger instance. Only messages written to the logger at the specified allowed level will then be output, others will be discarded.

e.g. use logging.SetLevel(logging.INFO, "myLog")
logger.Info("my message") > is output
logger.debug("my message") !output

from go-logging.

fixNoobi avatar fixNoobi commented on June 21, 2024

Dosent work

	logging.SetLevel(logging.INFO,"")
	backend := logging.NewLogBackend(os.Stderr, "", 0)
	backend2Formatter := logging.NewBackendFormatter(backend, format)

	logging.SetLevel(logging.INFO, "myLog")

	if strings.ToUpper(*LOG_LEVEL) == "ERROR" {
	 	logging.SetLevel(logging.ERROR, "myLog")
	} else if strings.ToUpper(*LOG_LEVEL) == "INFO" {
	    logging.SetLevel(logging.INFO, log.Module)
	} else if strings.ToUpper(*LOG_LEVEL) == "DEBUG" {
		logging.SetLevel(logging.DEBUG, "myLog")
	} else if strings.ToUpper(*LOG_LEVEL) == "CRITICAL" {
		logging.SetLevel(logging.CRITICAL, "myLog")
	} else if strings.ToUpper(*LOG_LEVEL) == "NOTICE" {
		logging.SetLevel(logging.NOTICE, "myLog")
	} else if strings.ToUpper(*LOG_LEVEL) == "WARNING" {
		logging.SetLevel(logging.WARNING, "myLog")
	} else {
		logging.SetLevel(logging.INFO, log.Module)
	}

	logging.SetBackend(backend2Formatter)
	log.Info(logging.GetLevel(log.Module))

from go-logging.

fixNoobi avatar fixNoobi commented on June 21, 2024

@utkudarilmaz Thanx!

from go-logging.

adibraver avatar adibraver commented on June 21, 2024

Hi @utkudarilmaz! can i change the log level after the log was initialized? i see that SetLevel() doesn't have any locking mechanism. is this the right way to do it? Logging.SetLevel()? or init the log again?
Thanks.

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.