Look in the following code:
**FileHandler txtLog = new FileHandler("log/server-%u%g.log", 0, 1, true);**
txtLog.setFormatter(new SimpleTextFormatter());
BasicServerConfig config = qs.getBasicConfig();
log.fine("Getting the log level.. from server.xml, after loading Quick Server...");
txtLog.setLevel(Level.parse(config.getConsoleLoggingLevel()));
log.setLevel(Level.parse(config.getConsoleLoggingLevel()));
log.addHandler(txtLog);
qs.setAppLogger(log);
I want that this file should be created with each new date (with out time).