> -----Original Message----- > From: srinivasan krishnamurthy [mailto:[EMAIL PROTECTED] > > > I am using a servlet to generate this pdf. > Is there a way by which i can make Apache FOP not to > print these warnings. The content that i see looks > fine.
I'm supposing you have sth like this in your code somewhere : Logger SomeLogger = new ConsoleLogger( ConsoleLogger.LEVEL_INFO ); ... driver.setLogger( SomeLogger ); ... If you do, make sure that the first line becomes : Logger SomeLogger = new ConsoleLogger( ConsoleLogger.LEVEL_ERROR ); ^^^^^^^^ That way, you will only get messages on 'real' errors. Greetz, Andreas Delmelle --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
