A D E I L O S W

A

ALL - Static variable in class log.Log
ALL is the maximum value for a message level.

D

DEBUG - Static variable in class log.Log
DEBUG is a message level used essentially during the debugging process.

E

enter() - Static method in class log.Log
Logs a method entry according to the default levels.
enter(int) - Static method in class log.Log
Logs a method entry according to the specified level.
enter(Object) - Static method in class log.Log
Logs a method entry according to the default levels, and adds the specified message.
enter(Object, int) - Static method in class log.Log
Logs a method entry according to the specified level, and adds the specified message.
exit() - Static method in class log.Log
Logs a method exit according to the default levels.
exit(int) - Static method in class log.Log
Logs a method exit according to the specified level.
exit(Object) - Static method in class log.Log
Logs a method exit according to the default levels, and adds the specified message.
exit(Object, int) - Static method in class log.Log
Logs a method exit according to the specified level, and adds the specified message.

I

INFO - Static variable in class log.Log
INFO is a message level that indicates an information.

L

Log - class log.Log.
Log is a very easy-to-use logging system, replacing efficiently "System.out.println()" debugging.
log - package log
 
log(Object) - Static method in class log.Log
Logs the specified message according to the default levels.
log(Object, int) - Static method in class log.Log
Logs the specified message according to the specified level.

O

OFF - Static variable in class log.Log
OFF is the minimum value for a message level.

S

SEVERE - Static variable in class log.Log
SEVERE is a message level that indicates a serious failure.
setConsoleLevel(int) - Static method in class log.Log
Sets the current console level.
setConsoleLevel(String, int) - Static method in class log.Log
Sets the current console level for a specific class.
setDefaultLevel(int) - Static method in class log.Log
Sets the default level value to use during a display operation for all the messages for whose the user did not specified a level.
setFile(String) - Static method in class log.Log
Sets the file that records logging information.
setFile(String, int) - Static method in class log.Log
Initialize a set of files that record logging information.
setFileLevel(int) - Static method in class log.Log
Sets the current file level.
setFileLevel(String, int) - Static method in class log.Log
Sets the current file level for a specific class.

W

WARNING - Static variable in class log.Log
WARNING is a message level that indicates a warning.

A D E I L O S W