Uses of Class
org.pentaho.di.core.logging.LogLevel
-
Packages that use LogLevel Package Description org.pentaho.di.core.database Contains all the different database dialects as well as the DatabaseMeta class (definition) and the Database class (execution)org.pentaho.di.core.logging This package contains the Log4j Kettle appenders and Kettle layout as well as the Kettle Log Message.org.pentaho.di.core.logging.log4j -
-
Uses of LogLevel in org.pentaho.di.core.database
Methods in org.pentaho.di.core.database that return LogLevel Modifier and Type Method Description LogLevel
Database. getLogLevel()
Methods in org.pentaho.di.core.database with parameters of type LogLevel Modifier and Type Method Description void
Database. setLogLevel(LogLevel logLevel)
-
Uses of LogLevel in org.pentaho.di.core.logging
Methods in org.pentaho.di.core.logging that return LogLevel Modifier and Type Method Description LogLevel
KettleLoggingEvent. getLevel()
LogLevel
LogMessage. getLevel()
LogLevel
LogMessageInterface. getLevel()
static LogLevel
DefaultLogLevel. getLogLevel()
LogLevel
LogChannel. getLogLevel()
LogLevel
LogChannelInterface. getLogLevel()
LogLevel
LoggingObject. getLogLevel()
LogLevel
LoggingObjectInterface. getLogLevel()
Gets the logging level of the log channel of this logging object.LogLevel
SimpleLoggingObject. getLogLevel()
static LogLevel
LogLevel. getLogLevelForCode(String code)
Return the log level for a certain log level codestatic LogLevel
LogLevel. valueOf(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.pentaho.di.core.logging with parameters of type LogLevel Modifier and Type Method Description boolean
LogLevel. isVisible(LogLevel filterLogLevel)
void
LogChannel. println(LogMessageInterface message, Throwable e, LogLevel channelLogLevel)
void
LogChannel. println(LogMessageInterface logMessage, LogLevel channelLogLevel)
void
KettleLoggingEvent. setLevel(LogLevel level)
void
LogMessage. setLevel(LogLevel level)
Deprecated.static void
DefaultLogLevel. setLogLevel(LogLevel logLevel)
void
LogChannel. setLogLevel(LogLevel logLevel)
void
LogChannelInterface. setLogLevel(LogLevel logLevel)
void
LoggingObject. setLogLevel(LogLevel logLevel)
void
SimpleLoggingObject. setLogLevel(LogLevel logLevel)
Constructors in org.pentaho.di.core.logging with parameters of type LogLevel Constructor Description KettleLoggingEvent(Object message, long timeStamp, LogLevel level)
LogMessage(String message, String logChannelId, Object[] arguments, LogLevel level)
LogMessage(String message, String logChannelId, LogLevel level)
Recommended use :LogMessage(String subject, LogLevel level)
Backward compatibility : no registry used, just log the subject as part of the message -
Uses of LogLevel in org.pentaho.di.core.logging.log4j
Fields in org.pentaho.di.core.logging.log4j with type parameters of type LogLevel Modifier and Type Field Description static Map<LogLevel,org.apache.logging.log4j.Level>
KettleLogChannelAppender. LOG_LEVEL_MAP
Maps Kettle LogLevels to Log4j Levels
-