Hi. I'm writing an Ftplet implementation and running ftpserver in embedded mode. How can I have exceptions from my code logged (i.e. from methods overriding DefaultFtplet.onDownloadStart(...) for example)? The Ftp server seems to catch the exceptions and throw them away. I don't see them on the console, or in my log4j appenders. I've tried throwing FtpException and a subclass of RuntimeException, I don't see either.
I saw in the Apache MINA documentation, that logging might be filtered by type, including type EXCEPTION_CAUGHT. But I don't see how to modify this behavior from an Ftplet or when starting the embedded server. Thanks for any suggestions. Marc
