Details
Description
Seems that the SFL4JLog is not setup to correctly show the actual class/line printing the message.
All the messages come out looking like this:
18:30:16,736 INFO [QFJ Timer] quickfixj.msg.outgoing (SLF4JLog.java:90) - FIX.4.2:MRKTC-OMS->MRKTC-EXCH: 8=FIX.4.29=6335=034=2749=MRKTC-OMS52=20070210-02:30:16.73256=MRKTC-EXCH10=114
with (SLF4JLog.java:90) always being the line origin of where the message is coming from.
I know that in Log4J they have a concept of a "wrapper function" name that gets passed in to the log function to make sure the wrapper doesn't get printed:
http://logging.apache.org/log4j/docs/api/org/apache/log4j/Category.html#log(java.lang.String,%20org.apache.log4j.Priority,%20java.lang.Object,%20java.lang.Throwable)
Perhaps there's some similar approach for SLF4J as well?