Uses of Class
tuwien.auto.calimero.log.LogLevel

Packages that use LogLevel
tuwien.auto.calimero.log Provides a small logging framework used by Calimero for offering information to users of the library. 
 

Uses of LogLevel in tuwien.auto.calimero.log
 

Fields in tuwien.auto.calimero.log declared as LogLevel
static LogLevel LogLevel.ALL
          The highest log level, no restrictions, everything will be logged.
static LogLevel LogLevel.ERROR
          This level identifies the attached object for errors purposes.
static LogLevel LogLevel.FATAL
          This level identifies the attached object for fatal errors purposes.
static LogLevel LogLevel.INFO
          This level identifies the attached object for informational purposes.
static LogLevel LogLevel.OFF
          The lowest log level, logging is turned off.
static LogLevel LogLevel.TRACE
          This level identifies the attached object for tracing purposes.
static LogLevel LogLevel.WARN
          This level identifies the attached object for warning purposes.
 

Methods in tuwien.auto.calimero.log that return LogLevel
 LogLevel LogWriter.getLogLevel()
          Returns the log level used for deciding which messages will be logged.
 LogLevel LogService.getLogLevel()
          Returns the currently set log level of this log service.
 

Methods in tuwien.auto.calimero.log with parameters of type LogLevel
protected  java.lang.String LogStreamWriter.formatOutput(java.lang.String svc, LogLevel l, java.lang.String msg, java.lang.Throwable t)
          Creates a formatted output string from the input parameters.
 boolean LogLevel.higher(LogLevel l)
          Compares for a higher log level than l.
 void LogService.log(LogLevel level, java.lang.String msg)
          Offers msg with log level.
 void LogService.log(LogLevel level, java.lang.String msg, java.lang.Throwable t)
          Offers msg and the throwable object with log level.
protected  boolean LogStreamWriter.logAllowed(LogLevel level)
          Checks if logging output with log level is possible and would get accepted by this LogStreamWriter.
 void LogWriter.setLogLevel(LogLevel level)
          Sets the log level for deciding which messages gets logged by this LogWriter.
 void LogService.setLogLevel(LogLevel level)
          Sets a new log level for this log service.
 void LogStreamWriter.write(java.lang.String logService, LogLevel level, java.lang.String msg)
           
abstract  void LogWriter.write(java.lang.String logService, LogLevel level, java.lang.String msg)
          Writes a message out to this LogWriter.
 void LogFileWriter.write(java.lang.String logService, LogLevel level, java.lang.String msg)
           
 void LogStreamWriter.write(java.lang.String logService, LogLevel level, java.lang.String msg, java.lang.Throwable t)
           
abstract  void LogWriter.write(java.lang.String logService, LogLevel level, java.lang.String msg, java.lang.Throwable t)
          Like LogWriter.write(String, LogLevel, String), in addition a Throwable object is taken which will be added to the message.
 void LogFileWriter.write(java.lang.String logService, LogLevel level, java.lang.String msg, java.lang.Throwable t)
           
 

Constructors in tuwien.auto.calimero.log with parameters of type LogLevel
LogFileWriter(LogLevel level, java.lang.String file, boolean append)
          Like LogFileWriter.LogFileWriter(String, boolean), with the option to adjust the filter log level for information logged by LogFileWriter.
LogFileWriter(LogLevel level, java.lang.String file, boolean append, int maxSize)
          Like LogFileWriter.LogFileWriter(LogLevel, String, boolean), with the option to specify the maximum file size allowed for all output written.
LogFileWriter(LogLevel level, java.lang.String file, boolean append, int maxSize, boolean autoFlush)
          Like LogFileWriter.LogFileWriter(LogLevel, String, boolean, int), with the option to adjust the automatic flush behavior of data.
LogNetWriter(LogLevel level, java.lang.String host, int port)
          Like LogNetWriter.LogNetWriter(String, int) with the ability to set the filter log level for information logged by LogNetWriter.
LogService(java.lang.String name, LogLevel level)
          Creates a new log service with the specified name and log level.
LogStreamWriter(LogLevel level, java.io.OutputStream os)
          Creates a LogStreamWriter with specified log level and output stream.
LogStreamWriter(LogLevel level, java.io.OutputStream os, boolean autoFlush)
          Creates a LogStreamWriter with specified log level and output stream.