wbrigg

Untitled

Feb 16th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. # Properties file which configures the operation of the JDK
  2. # logging facility in Quantemol-N.
  3. # {0} is replaced with Application Directory (location of Quantemol.jar)
  4.  
  5. handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
  6.  
  7. # --- ConsoleHandler ---
  8. java.util.logging.ConsoleHandler.level=INFO
  9. java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
  10.  
  11. # --- FileHandler ---
  12. java.util.logging.FileHandler.level=ALL
  13. java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
  14.  
  15. # Naming style for the output file:
  16. java.util.logging.FileHandler.pattern={0}/qnlog%g.txt
  17.  
  18. # Limiting size of output file in bytes:
  19. java.util.logging.FileHandler.limit=50000
  20.  
  21. # Number of output files to cycle through, by appending an
  22. # integer to the base file name:
  23. java.util.logging.FileHandler.count=5
Advertisement
Add Comment
Please, Sign In to add comment