tags:

views:

13

answers:

1

I'm using the batik transcoder for svgs, and every time I convert an SVG image, it produces output on standard out. I'm assuming it's using a logging package of some kind. How do I disable this output?

+1  A: 

You can set a custom ErrorHandler on your transcoder object by calling setErrorHandler(). The default error handler spews messages like "ERROR: blah blah" to System.err.

heycam