(Exception e)
| 136 | } |
| 137 | |
| 138 | private static void errorHandler(Exception e) { |
| 139 | if (isEnabled() && errorCount < 3) { |
| 140 | errorCount++; |
| 141 | |
| 142 | CatLogger.getInstance().error(e.getMessage(), e); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | public static String getCatHome() { |
| 147 | return Properties.forString().fromEnv().fromSystem().getProperty("CAT_HOME", "/data/appdatas/cat/"); |
no test coverage detected