On Fri, Sep 23, 2011 at 2:37 AM, Devin Han <[email protected]> wrote:

<snip>
>
> Don't worry about this log message. It is generated by the method
> getTextPropertiesForRead() in
> org.odftoolkit.simple.style.DefaultStyleHandler.
> Logger.getLogger(CellStyleHandler.class.getName()).log(Level.INFO, "No
> explicit text properties definition is found!", "");
>


Hi Devin -- We should probably try to eliminate any unnecessary log
messages.  If there are no real errors then by default we should not
be writing to stderr or stdout;.  Why?  Think of the multithreaded
server scenario.  It is annoying for the server admin to have this
written to the log files, filling up their logs and making it harder
for them to find important information.  And on some servers, where
stderr is unbufffered, this can be a performance problem.  You have
multiple threads all trying to write to stderr, and blocking for
access.

-Rob

Reply via email to