1 package com.jsql.util;
2
3 import org.apache.logging.log4j.Level;
4
5 import java.awt.*;
6
7 public class LogLevelUtil {
8
9
10 public static final Color COLOR_RED = new Color(0xFF6B68);
11 public static final Color COLOR_BLU = new Color(0x5394EC);
12 public static final Color COLOR_GREEN = new Color(0x299999);
13
14
15 public static final Level CONSOLE_JAVA = Level.forName("CONSOLE_JAVA", 202);
16 public static final Level CONSOLE_ERROR = Level.forName("CONSOLE_ERROR", 201);
17
18
19 public static final Level CONSOLE_INFORM = Level.forName("CONSOLE_INFORM", 403);
20 public static final Level CONSOLE_SUCCESS = Level.forName("CONSOLE_SUCCESS", 402);
21 public static final Level CONSOLE_DEFAULT = Level.forName("CONSOLE_DEFAULT", 401);
22
23
24 public static final Level IGNORE = Level.forName("IGNORE", 601);
25
26 private LogLevelUtil() {
27
28 }
29 }