protected void runCommand()
throws CommandLineException
{
try
{
RollingFileWriter w = new RollingFileWriter (fileNamePattern,
null,
maxSize,
maxFiles,
compressionType,
this);
for (int i = 0; i < totalLines; i++)
{
w.print (dateFormat.format (new Date()));
w.println (" Test message " + i);
}
}
catch (Exception ex)
{