We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ca2293 commit 722decbCopy full SHA for 722decb
1 file changed
src/main/java/com/neuronrobotics/sdk/common/Log.java
@@ -38,19 +38,19 @@
38
public class Log {
39
40
/** The Constant LOG. */
41
- public static final int LOG = -1;
+ private static final int LOG = -1;
42
43
/** The Constant INFO. */
44
- public static final int INFO = 0;
+ private static final int INFO = 0;
45
46
/** The Constant DEBUG. */
47
- public static final int DEBUG = 1;
+ private static final int DEBUG = 1;
48
49
/** The Constant WARNING. */
50
- public static final int WARNING = 2;
+ private static final int WARNING = 2;
51
52
/** The Constant ERROR. */
53
- public static final int ERROR = 3;
+ private static final int ERROR = 3;
54
55
/** The instance. */
56
private static Log instance;
0 commit comments