Coder Social home page Coder Social logo

Comments (7)

Ullaakut avatar Ullaakut commented on May 19, 2024 1

My bad, indeed it shouldn't have been 0. Anyway, since then, the Caller() method has been added to zerolog to achieve this. Once again though, keep in mind that IIRC, this slows down the logger a great deal.

from zerolog.

rs avatar rs commented on May 19, 2024

Yes, we could add that as optional features. Those are costly operations which IMHO don't add much value.

from zerolog.

Ullaakut avatar Ullaakut commented on May 19, 2024

@ccll You can add this feature to your logger with a custom hook by using runtime.Caller, it's pretty straightforward and I don't think it really makes sense to have it as a feature in ZeroLog itself as it's clearly making the logging slower.

If you want advice on how to implement it, I can help.

from zerolog.

ccll avatar ccll commented on May 19, 2024

@Ullaakut Thanks for the advice, I'll definitely try that.
Closing now.

from zerolog.

OptimisticLock avatar OptimisticLock commented on May 19, 2024

@Ullaakut please do post the snip with runtime.Caller if you would.

from zerolog.

Ullaakut avatar Ullaakut commented on May 19, 2024

Hi @OptimisticLock. Something like that should work.

type LineInfoHook struct{}

func (h LineInfoHook) Run(e *zerolog.Event, l zerolog.Level, msg string) {
	_, file, line, ok := runtime.Caller(0)
	if ok {
		e.Str("file", file)
		e.Int("line", line)
	}
}

or if you want it in a single field:

type LineInfoHook struct{}

func (h LineInfoHook) Run(e *zerolog.Event, l zerolog.Level, msg string) {
	_, file, line, ok := runtime.Caller(0)
	if ok {
		e.Str("line", fmt.Sprintf("%s:%d", file, line))
	}
}

See https://github.com/rs/zerolog/blob/master/log_example_test.go for examples with hooks.
See the runtime package docs for more info about the Caller func.

from zerolog.

adbenitez avatar adbenitez commented on May 19, 2024

Hi @OptimisticLock. Something like that should work.

it doesn't work, it prints the like where runtime.Caller(0) is called inside the hook, not the line where the logging happened

from zerolog.

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.