I have problem with java.util.logging.FileHandler.limit property as file size exceeded the limit size here are used properties in my application
java.util.logging.FileHandler.pattern = ATMChannelAdapter%u.log
java.util.logging.FileHandler.limit = 2000000
java.util.logging.FileHandler.count = 10
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
it works fine and then at some point application writes in only one file with no limit beyond the configuration file size riches 1 GB approximately and to back to normal configuration I have to restart my application.
operating system is windows server 2012 java 7
does anyone have similar issue? is this could be happened in high load?
Thanks in advance