+1  A: 

Why not use a proper logging framework instead of System.out? You have at least three at your disposal:

Using any of these you will be able to control what you log (using levels - debug, info, warn, error), where you log (turn loggers on and off) and log into different targets - files, db, mail, jms etc.

David Rabinowitz
Thank you. I used the log4j and console appender. Your point give me good understanding.
jaehyun
A: 

David Rabinowitz makes a good point, but to answer your question, your use of cronolog is fine.

Jeremy Stein