|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.LogService
public class LogService
Utility class providing static methods for logging.
Parameters read from config file:
LOG_VERBOSITY_NAMES
Usually, operators should only use the log verbosities MINIMUM for messages with a low priority and STATUS for normal information messages. The verbosity levels WARNING, EXCEPTION, and ERROR should be used in error cases. All other log verbosity levels should only be used by internal YALE classes and not by user written operators.
Log messages can be formatted by using the following macros:
Field Summary | |
---|---|
private static int |
equalMessageCount
Counts how often a message was repeated. |
static int |
ERROR
Use this log verbosity for logging of errors. |
static int |
EXCEPTION
Use this log verbosity for logging of exceptions. |
static int |
FATAL
Use this log verbosity for logging of fatal errors which will stop experiment running somewhere in the future. |
static int |
INIT
Only the most important logging messaged should use this log verbosity. |
static int |
IO
Indicates log messages concerning in- and output. |
private static java.lang.String |
lastMessage
The last printed message. |
static java.lang.String[] |
LOG_VERBOSITY_NAMES
|
private static java.io.File |
logFile
|
private static java.io.PrintStream |
logOut
The PrintStream to write the messages to. |
static int |
MAXIMUM
Normally this log verbosity should not be used by operators. |
static int |
MINIMUM
Indicates the lowest log verbosity. |
private static int |
minVerbosityLevel
The minimal verbosity level. |
static int |
OFF
For switching off logging during testing. |
static int |
STATUS
The default log verbosity for all logging purposes of operators. |
private static java.lang.String[] |
VERBOSITYLEVEL_END
|
private static java.lang.String[] |
VERBOSITYLEVEL_START
|
static int |
WARNING
Use this log verbosity for logging of warnings. |
Constructor Summary | |
---|---|
LogService()
|
Method Summary | |
---|---|
static void |
close()
Closes the stream. |
private static Operator |
getCurrentOperator()
|
static java.io.File |
getLogFile()
|
private static java.lang.String |
getTime()
Returns the current system time nicely formatted. |
static int |
getVerbosityLevel()
|
private static java.lang.String |
handleNewlineChars(java.lang.String message)
Adds an additional \r on Windows systems in order to provide nice-looking file logging. |
static void |
init(Experiment experiment)
Initialises the LogService reading parameters form the ParameterService. |
static void |
init(Experiment experiment,
int verbosityLevel)
Initialises the LogService reading parameters form the ParameterService. |
static void |
init(java.io.OutputStream out,
int verbosityLevel,
boolean format)
Initialises the LogService. |
static void |
initGUI()
|
static boolean |
isSufficientLogVerbosity(int level)
|
static void |
logException(java.lang.String message,
java.lang.Throwable exception)
Writes the message and the stack trace of the exception. |
static void |
logMessage(java.lang.String message,
int verbosityLevel)
Writes the message to the output stream if the verbosity level is high enough. |
static void |
logMessageWithTree(java.lang.String message,
int verbosityLevel,
Operator op)
Writes the message to the output stream if the verbosity level is high enough and appends the experiment tree with operator op marked. |
static void |
setOutputStream(java.io.OutputStream out)
|
static void |
setVerbosityLevel(int level)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int MINIMUM
public static final int IO
public static final int STATUS
public static final int INIT
public static final int WARNING
public static final int EXCEPTION
public static final int ERROR
public static final int FATAL
public static final int MAXIMUM
public static final int OFF
public static final java.lang.String[] LOG_VERBOSITY_NAMES
private static java.io.PrintStream logOut
private static int minVerbosityLevel
private static java.lang.String lastMessage
private static int equalMessageCount
private static java.io.File logFile
private static final java.lang.String[] VERBOSITYLEVEL_START
private static final java.lang.String[] VERBOSITYLEVEL_END
Constructor Detail |
---|
public LogService()
Method Detail |
---|
public static void init(Experiment experiment) throws UndefinedParameterError
UndefinedParameterError
public static void init(Experiment experiment, int verbosityLevel) throws UndefinedParameterError
UndefinedParameterError
public static void init(java.io.OutputStream out, int verbosityLevel, boolean format)
out
- The stream to write the messages to.verbosityLevel
- Only messages with message.verbosityLevel >= verbosityLevel
are loggedformat
- must be true if the output should be formatted by the
FormattedPrintStreampublic static void initGUI() throws UndefinedParameterError
UndefinedParameterError
public static void setOutputStream(java.io.OutputStream out)
public static void close()
public static void setVerbosityLevel(int level)
public static int getVerbosityLevel()
public static boolean isSufficientLogVerbosity(int level)
private static Operator getCurrentOperator()
private static java.lang.String handleNewlineChars(java.lang.String message)
public static void logMessage(java.lang.String message, int verbosityLevel)
public static void logMessageWithTree(java.lang.String message, int verbosityLevel, Operator op)
public static void logException(java.lang.String message, java.lang.Throwable exception)
private static java.lang.String getTime()
public static java.io.File getLogFile()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |