home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Shareware / Programare / httpcurrent / jdk14.logging.sample < prev    next >
Text File  |  2005-04-29  |  1KB  |  39 lines

  1. # Specify the handlers to create in the root logger
  2. # (all loggers are children of the root logger)
  3. # The following creates two handlers
  4. handlers = java.util.logging.ConsoleHandler
  5.     
  6. # Set the default logging level for the root logger
  7. .level = ALL
  8.     
  9. # Set the default logging level for new ConsoleHandler instances
  10. java.util.logging.ConsoleHandler.level = ALL
  11.     
  12. # Set the default formatter for new ConsoleHandler instances
  13. java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
  14.     
  15.  
  16.  
  17. # All HTTP client logging (SEVERE turns off tracing)
  18. #com.nogoop.http.level = ALL
  19. com.nogoop.http.level = SEVERE
  20.  
  21. # Wire tracing
  22. #com.nogoop.http.wireLog.level = ALL
  23.  
  24. # Per-class logging
  25. #com.nogoop.http.ContentLengthInputStream.level = ALL
  26. #com.nogoop.http.ChunkedInputStream.level = ALL
  27. #com.nogoop.http.Headers.level = ALL
  28. #com.nogoop.http.HttpConnection.level = ALL
  29. #com.nogoop.http.HttpConnectionManager.level = ALL
  30. #com.nogoop.http.HttpURLConnection.level = ALL
  31. #com.nogoop.http.HttpURLConnection.level = INFO
  32. #com.nogoop.http.HttpURLConnectInternal.level = WARN
  33. #com.nogoop.http.HttpURLConnectInternal.level = ALL
  34. #com.nogoop.http.Authenticator.level = ALL
  35.  
  36.  
  37.  
  38.  
  39.