I am using Logger from Restlet framework with FileHandler to log my application in production mode. However, I always get the Excetption "Unable to create a FileHandler for the Logger: Couldn't get lock for test.log". How can I solve this? Here is the code:
FileHandler aFileHandler = new FileHandler("test.log");
Formatter aFormatter = new SimpleFormatter();
aFileHandler.setFormatter(aFormatter);
aLogger.setLevel(Level.ALL);
aLogger.addHandler(aFileHandler);
This log file is used by serveral by more than one process at the same time.
And except the .log file, a lot of other files like ".log.1, .log.2 ....." have been created. Does anybody know why?
I really appreciate the help of yours.
Thanks!
Ike