|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ITaskLogger
RoboticsAPI logging interface to be used by tasks. Provides logging for diagnostics and visualization.
| Method Summary | |
|---|---|
void |
error(String msg)
Logs the given message with ERROR level. |
void |
error(String msg,
Throwable thrown)
Logs the given message with ERROR level, with associated Throwable information. |
void |
fine(String msg)
Logs the given message with FINE level. |
void |
info(String msg)
Logs the given message with INFO level. |
void |
warn(String msg)
Logs the given message with WARNING level. |
void |
warn(String msg,
Throwable thrown)
Logs the given message with WARNING level, with associated Throwable information. |
| Method Detail |
|---|
void error(String msg)
Task logs may be retrieved from diagnostic data. Tasks of type
IRoboticsAPITask do also log ERROR messages to the HMI debugging
console.
msg - The string message
void error(String msg,
Throwable thrown)
Throwable information.
Task logs may be retrieved from diagnostic data. Tasks of type
IRoboticsAPIApplication do also log ERROR messages to the HMI
debugging console.
msg - The string messagethrown - Throwable associated with log message.void warn(String msg)
Task logs may be retrieved from diagnostic data. Tasks of type
IRoboticsAPIApplication do also log WARNING messages to the HMI
debugging console.
msg - The string message
void warn(String msg,
Throwable thrown)
Throwable information.
Task logs may be retrieved from diagnostic data. Tasks of type
IRoboticsAPIApplication do also log WARNING messages to the HMI
debugging console.
msg - The string messagethrown - Throwable associated with log message.void info(String msg)
Task logs may be retrieved from diagnostic data. Tasks of type
IRoboticsAPIApplication do also log INFO messages to the HMI
debugging console.
msg - The string messagevoid fine(String msg)
Task logs may be retrieved from diagnostic data.
msg - The string message
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||