public class ImJavaApiLogger extends Object
Modifier and Type | Method and Description |
---|---|
static void |
debug(Class<?> clazz,
String message)
For following the trace of the execution.
|
static void |
info(Class<?> clazz,
String message)
Events that have business meaning (i.e.
|
static void |
severe(Class<?> clazz,
String message)
To log any not expected error that can cause application malfunctions.
|
static void |
severe(Class<?> clazz,
Throwable throwable)
To log any not expected error that can cause application malfunctions.
|
static void |
warning(Class<?> clazz,
String message)
Shows not critical errors.
|
public static void debug(Class<?> clazz, String message)
clazz
- : Class generating the messagemessage
- : Message to logpublic static void info(Class<?> clazz, String message)
clazz
- : Class generating the messagemessage
- : Message to logpublic static void severe(Class<?> clazz, String message)
clazz
- : Class generating the messagemessage
- : Message to logpublic static void severe(Class<?> clazz, Throwable throwable)
clazz
- : Class generating the messagethrowable
- : Exception raisedCopyright © 2016. All rights reserved.