Package jade.tools.logging
Interface LogManager
-
- All Known Implementing Classes:
JavaLoggingLogManagerImpl
public interface LogManager- Version:
- $Date: $ $Revision: $
- Author:
- Tiziana Trucco
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListgetAllLogInfo()Returns a list ofLoggerInfoobjects each one describing a logger active in the local JVM.ListgetLogLevels()Returns a list ofLevelInfoobject each one describing a level valid for the selected logging system.StringgetName()Returns a user friendly name of the logging systemvoidsetFile(String name, String fileHandler)voidsetLogLevel(String name, int level)
-
-
-
Method Detail
-
getAllLogInfo
List getAllLogInfo()
Returns a list ofLoggerInfoobjects each one describing a logger active in the local JVM.- Returns:
- a List of LogInfo
-
setLogLevel
void setLogLevel(String name, int level)
-
getLogLevels
List getLogLevels()
Returns a list ofLevelInfoobject each one describing a level valid for the selected logging system.- Returns:
- a list of
LevelInfoobject each one describing a level valid for the selected logging system.
-
getName
String getName()
Returns a user friendly name of the logging system- Returns:
- user friendly name of the logging system
-
-