Hacker News new | ask | show | jobs
by javanonymous 991 days ago
If I understand your use case, most loggers (like Logback) have the possiblity to automatically include the name of the method that called the log-statement.

Logback even supports including the call chain in the output, so you could include the parent method, grand parent method etc. This probably uses reflection, so it could have a negative impact for applications that need a high performance.

https://logback.qos.ch/manual/layouts.html

1 comments

Thanks. Will take a look. I don't use logging frameworks in smaller projects.