Uses of Class
org.apache.mina.filter.logging.LogLevel
-
Packages that use LogLevel Package Description org.apache.mina.filter.logging Classes that implement IoFilter and provide logging of the events and data that flows through a MINA-based system. -
-
Uses of LogLevel in org.apache.mina.filter.logging
Fields in org.apache.mina.filter.logging declared as LogLevel Modifier and Type Field Description private LogLevelLoggingFilter. exceptionCaughtLevelThe log level for the exceptionCaught event.private LogLevelLoggingFilter. messageReceivedLevelThe log level for the messageReceived event.private LogLevelLoggingFilter. messageSentLevelThe log level for the messageSent event.private LogLevelLoggingFilter. sessionClosedLevelThe log level for the sessionClosed event.private LogLevelLoggingFilter. sessionCreatedLevelThe log level for the sessionCreated event.private LogLevelLoggingFilter. sessionIdleLevelThe log level for the sessionIdle event.private LogLevelLoggingFilter. sessionOpenedLevelThe log level for the sessionOpened event.Methods in org.apache.mina.filter.logging that return LogLevel Modifier and Type Method Description LogLevelLoggingFilter. getExceptionCaughtLogLevel()Get the LogLevel for the ExceptionCaught event.LogLevelLoggingFilter. getMessageReceivedLogLevel()Get the LogLevel for the MessageReceived event.LogLevelLoggingFilter. getMessageSentLogLevel()Get the LogLevel for the MessageSent event.LogLevelLoggingFilter. getSessionClosedLogLevel()Get the LogLevel for the SessionClosed event.LogLevelLoggingFilter. getSessionCreatedLogLevel()Get the LogLevel for the SessionCreated event.LogLevelLoggingFilter. getSessionIdleLogLevel()Get the LogLevel for the SessionIdle event.LogLevelLoggingFilter. getSessionOpenedLogLevel()Get the LogLevel for the SessionOpened event.static LogLevelLogLevel. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LogLevel[]LogLevel. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.mina.filter.logging with parameters of type LogLevel Modifier and Type Method Description private voidLoggingFilter. log(LogLevel eventLevel, java.lang.String message)Log if the logger and the current event log level are compatible.private voidLoggingFilter. log(LogLevel eventLevel, java.lang.String message, java.lang.Object param)Log if the logger and the current event log level are compatible.private voidLoggingFilter. log(LogLevel eventLevel, java.lang.String message, java.lang.Throwable cause)Log if the logger and the current event log level are compatible.voidLoggingFilter. setExceptionCaughtLogLevel(LogLevel level)Set the LogLevel for the ExceptionCaught event.voidLoggingFilter. setMessageReceivedLogLevel(LogLevel level)Set the LogLevel for the MessageReceived event.voidLoggingFilter. setMessageSentLogLevel(LogLevel level)Set the LogLevel for the MessageSent event.voidLoggingFilter. setSessionClosedLogLevel(LogLevel level)Set the LogLevel for the SessionClosed event.voidLoggingFilter. setSessionCreatedLogLevel(LogLevel level)Set the LogLevel for the SessionCreated event.voidLoggingFilter. setSessionIdleLogLevel(LogLevel level)Set the LogLevel for the SessionIdle event.voidLoggingFilter. setSessionOpenedLogLevel(LogLevel level)Set the LogLevel for the SessionOpened event.
-