On May 9, 2013, at 1:06 AM, Dan Miller <[email protected]> wrote: > I have installed the Log bundle into felix, and have implemented the > LogListener to output those logs to the console. I see that i can get a > reference to the bundle where the log originated, but can i get the > class/method/line number where the message was written to the log like > Log4j or the JavaLogger output in their messages?
No. The only thing you can get is the Exception and its stack trace, if the original log call provided that. At best you could try writing your own implementation of LogService that, when a message is logged that does not include an exception, somehow adds a stack trace itself so you can later retrieve that (maybe with your own, custom exception that wraps that trace). Greetings, Marcel --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

