Basically I have a logging statement inside of a method. Whenever the method is called, I want to easily call the name of the method, and append it to the logging statement. This is done to minimize the number of hard coded lines in my application. Is this possible to do it cheaply?
|
|
No, not cheaply. The expensive and only way of doing it is with a |
|||||||||||||
|
|
If you only need method name and line number, you can do it reasonably fast. In my micro benchmark you can do about 120000 calls per second:
Also see this answer. |
|||||
|
|
Why reinvent the wheel, java.util.logging.Logger uses
I doubt you will get it any faster than this. [Edit] To get the calling methods name use,
|
|||||||
|
|
did you consider writing sensible log messages instead? I mean, messages that just tell reader of log the "story" about how code runs? messages that really differ for different methods?
Been banging my head on log like above just a week or two ago (method names were hardcoded). Didn't feel it noticeably more helpful than no logging at all. |
|||
|
|