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,
                        Throwable 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)
Example:
 thePlugin.writeConfigInUABLog("This is a config message")
 
 message - The message to be written in the log window.void writeDebugInUABLog(String message)
Example:
 thePlugin.writeDebugInUABLog("This is a debug message")
 
 message - The message to be written in the log window.void writeErrorInUABLog(String message)
Example:
 thePlugin.writeErrorInUABLog("This is an error message")
 
 message - The message to be written in the log window.void writeErrorWithStackTrace(String message, Throwable e)
message - is the message to be writtene - Exception that caused the errorvoid writeFineInUABLog(String message)
Example:
 thePlugin.writeFineInUABLog("This is an fine message")
 
 message - The message to be written in the log window.void writeInfoInUABLog(String message)
Example:
 thePlugin.writeInfoInUABLog("This is an info message")
 
 message - The message to be written in the log window.void writeWarningInUABLog(String message)
Example:
 thePlugin.writeWarningInUABLog("This is a warning message")
 
 message - The message to be written in the log window.Copyright © 2010–2020 CERN. All rights reserved.