LoggingMXBean


LoggingMXBean java.util.logging

Java 5.0

This interface defines the API for the javax.management "management bean" for the logging system. Obtain an instance with the static method LogManager.getLoggingMXBean( ) . The methods of this class allow the monitoring of all registered loggers and their logging level and allow management to change the logging level of any named logger.

 public interface  LoggingMXBean  {  // Public Instance Methods  String  getLoggerLevel  (String  loggerName  );        java.util.List<String>  getLoggerNames  ( );        String  getParentLoggerName  (String  loggerName  );        void  setLoggerLevel  (String  loggerName  , String  levelName  );   } 

Returned By

LogManager.getLoggingMXBean( )



Java In A Nutshell
Java In A Nutshell, 5th Edition
ISBN: 0596007736
EAN: 2147483647
Year: 2004
Pages: 1220

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net