public interface ILogWriterTemplate
Modifier and Type | Method and Description |
---|---|
void |
writeConfigInUABLog(String message)
Write a CONFIG message in UAB Log window.
|
void |
writeDebugInUABLog(String message)
Write a DEBUG message in UAB Log window.
|
void |
writeErrorInUABLog(String message)
Write a SEVERE message in UAB Log window.
|
void |
writeErrorWithStackTrace(String message,
Error e)
Used to write an ERROR message in UAB Log window and the stack trace that caused the error.
|
void |
writeErrorWithStackTrace(String message,
Exception e)
Used to write an ERROR message in UAB Log window and the stack trace that caused the error.
|
void |
writeFineInUABLog(String message)
Write a FINE message in UAB Log window.
|
void |
writeInfoInUABLog(String message)
Used to write an INFO message in UAB Log window.
|
void |
writeInUABLog(Level theLevel,
String message,
research.ch.cern.unicos.userreport.UserReportGenerator.type theType)
Used to write a message in UAB Log window
|
void |
writeWarningInUABLog(String message)
Used to write a WARNING message in UAB Log window.
|
void writeConfigInUABLog(String message)
message
- The message to be written in the log window.
thePlugin.writeConfigInUABLog("This is a config message")
void writeDebugInUABLog(String message)
message
- The message to be written in the log window.
thePlugin.writeDebugInUABLog("This is a debug message")
void writeErrorInUABLog(String message)
message
- The message to be written in the log window.
thePlugin.writeErrorInUABLog("This is an error message")
void writeErrorWithStackTrace(String message, Exception e)
message
- is the message to be writtene
- Exception that caused the errorvoid writeErrorWithStackTrace(String message, Error e)
message
- is the message to be writtene
- Exception that caused the errorvoid writeFineInUABLog(String message)
message
- The message to be written in the log window.
thePlugin.writeFineInUABLog("This is an fine message")
void writeInfoInUABLog(String message)
message
- The message to be written in the log window.
thePlugin.writeInfoInUABLog("This is an info message")
void writeWarningInUABLog(String message)
message
- The message to be written in the log window.
thePlugin.writeWarningInUABLog("This is a warning message")
Copyright © 2010–2015 CERN. All rights reserved.