|
From: Toli K. <to...@ma...> - 2007-08-30 05:09:22
|
> The directory containing the file is on the classpath, but not the file > itself. I've tried full paths, relative paths, etc... We have the file jar'd in to the main jar which is on the classpath, and we also just have the directory with the file, and both seem to work. > Anyway, how do I "enable quickfix.mina.ssl"? this depends on which underlying logger you are using in your config file. we go through SLF4J (slf4jLogFactory) and then we have the slf4j-log4j jar in the classpath which essentially turns out Log4j. At that point you need the log4j.properties file in the classpath which regulates the logging for Log4J. You can see the sample one at http://trac.marketcetera.org/trac.fcgi/browser/platform/trunk/core/src/main/resources/log4j.properties but essentially you'll need a line like this: log4j.logger.quickfix.mina.ssl=debug alternatively, you may want to enable debug messages through out to see as much output as possible: log4j.rootLogger=debug,stdout Hope this helps. |