1 18 19 package org.objectweb.util.monolog.api; 20 21 49 public class BasicLevel { 50 51 57 public static int FATAL ; 58 64 public static Level LEVEL_FATAL ; 65 66 70 public static int ERROR ; 71 75 public static Level LEVEL_ERROR ; 76 77 82 public static int WARN ; 83 88 public static Level LEVEL_WARN ; 89 90 94 public static int INFO ; 95 99 public static Level LEVEL_INFO ; 100 101 106 public static int DEBUG ; 107 112 public static Level LEVEL_DEBUG ; 113 114 118 public static int INHERIT ; 119 123 public static Level LEVEL_INHERIT ; 124 125 } 126 | Popular Tags |