|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Logger
The basic logging interface for MillScript. This will very likely need replacing the near future, as this interface should abstract the different destinations for messages(there may be multiple destinations).
| Method Summary | |
|---|---|
void |
alert(java.lang.Object o)
Logs the specified object as an "alert" level message. |
void |
alertLine(java.lang.Object o)
Logs the specified object as an "alert" level message and ends the current line of output. |
void |
crit(java.lang.Object o)
Logs the specified object as a "crit" level message. |
void |
critLine(java.lang.Object o)
Logs the specified object as a "crit" level message and ends the current line of output. |
void |
debug(java.lang.Object o)
Logs the specified object as a "debug" level message. |
void |
debugLine(java.lang.Object o)
Logs the specified object as a "debug" level message and ends the current line of output. |
void |
emerg(java.lang.Object o)
Logs the specified object as an "emerg" level message. |
void |
emergLine(java.lang.Object o)
Logs the specified object as an "emerg" level message and ends the current line of output. |
void |
error(java.lang.Object o)
Logs the specified object as an "error" level message. |
void |
errorLine(java.lang.Object o)
Logs the specified object as an "error" level message and ends the current line of output. |
void |
info(java.lang.Object o)
Logs the specified object as an "info" level message. |
void |
infoLine(java.lang.Object o)
Logs the specified object as an "info" level message and ends the current line of output. |
void |
notice(java.lang.Object o)
Logs the specified object as a "notice" level message. |
void |
noticeLine(java.lang.Object o)
Logs the specified object as a "notice" level message and ends the current line of output. |
void |
print(java.lang.Object o)
Prints the specified object to the relevant output for this logger. |
void |
println(java.lang.Object o)
Prints the specified object to the relevant output for this logger and then ends the line. |
void |
stackTrace(java.lang.Throwable t)
Prints a stack trace for the specified throwable object, to the relevant output for this logger. |
void |
warn(java.lang.Object o)
Logs the specified object as a "warn" level message. |
void |
warnLine(java.lang.Object o)
Logs the specified object as a "warn" level message and ends the current line of output. |
| Method Detail |
|---|
void alert(java.lang.Object o)
o - the object to logvoid alertLine(java.lang.Object o)
o - the object to logvoid crit(java.lang.Object o)
o - the object to logvoid critLine(java.lang.Object o)
o - the object to logvoid debug(java.lang.Object o)
o - the object to logvoid debugLine(java.lang.Object o)
o - the object to logvoid emerg(java.lang.Object o)
o - the object to logvoid emergLine(java.lang.Object o)
o - the object to logvoid error(java.lang.Object o)
o - the object to logvoid errorLine(java.lang.Object o)
o - the object to logvoid info(java.lang.Object o)
o - the object to logvoid infoLine(java.lang.Object o)
o - the object to logvoid notice(java.lang.Object o)
o - the object to logvoid noticeLine(java.lang.Object o)
o - the object to logvoid print(java.lang.Object o)
o - The Object to be printedvoid println(java.lang.Object o)
o - The Object to be printedvoid stackTrace(java.lang.Throwable t)
t - The throwable to print a stack trace forvoid warn(java.lang.Object o)
o - the object to logvoid warnLine(java.lang.Object o)
o - the object to log
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||