I am trying to disable log rotation, for file handler using,

FileHandler fh = new FileHandler
	( "path" + "run.log", 1000000, 1, false);

What i want is one log, created for each run i do not want rotation or backing up of the old file, but using this initialization i get run.log run.log.1 run.log.2 for each run.

Also

        logger.setUseParentHandlers(false);

is set to false.

link|improve this question

68% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Try 0 as the limit instead of 1000000.

link|improve this answer
feedback
Handler fileHandler = new FileHandler(FILE_PATH, true);
link|improve this answer
feedback

Try this: FileHandler fh = new FileHandler( "path" + "run.log", 1000000, 1, true);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.