RMLio / RML-Processor

16 stars 13 forks source link

Disable debugging output #2

Open ktk opened 8 years ago

ktk commented 8 years ago

In the old versions I once tried to figure out about how to disable the debugging output, this slows down processing for bulk-transforms. Is there a way to to that?

andimou commented 8 years ago

Create src/main/resources/log4j.properties with log4j.rootLogger=INFO,stdout,file and re-generate the jar. That should make the trick. I'll commit it at next push.

ktk commented 8 years ago

great tnx

natancox commented 8 years ago

some log statement do string concatenation without an if test like in if (log.isDebugEnabled()) log.debug(...); Those will still slow down the processing.