public final class Logger
extends java.lang.Object
Cercalia logger. If you would see Cercalia Debug log use the following code:
Cercalia.getInstance().setDebugLogger(true);
Default value is false
If you would see Cercalia Info log use the following code:
Cercalia.getInstance().setInfoLogger(true);
Default value is true
Copyright (c) 2017 Nexusgeographics All rights reserved.
Modifier and Type | Method and Description |
---|---|
void |
d(java.lang.String tag,
java.lang.String message)
D.
|
void |
e(java.lang.String tag,
java.lang.String message,
java.lang.Exception exception)
E.
|
static Logger |
getInstance(java.lang.Class clazz)
Gets instance.
|
void |
i(java.lang.String tag,
java.lang.String message)
.
|
void |
w(java.lang.String tag,
java.lang.String message)
W.
|
public static Logger getInstance(java.lang.Class clazz)
clazz
- the clazzpublic void e(java.lang.String tag, java.lang.String message, java.lang.Exception exception)
tag
- the tagmessage
- the messageexception
- the exceptionpublic void w(java.lang.String tag, java.lang.String message)
tag
- the tagmessage
- the messagepublic void i(java.lang.String tag, java.lang.String message)
tag
- the tagmessage
- the messagepublic void d(java.lang.String tag, java.lang.String message)
tag
- the tagmessage
- the message