(Level level, String sourceClass, String sourceMethod, String msg)
| 112 | } |
| 113 | |
| 114 | public void logp(Level level, String sourceClass, String sourceMethod, String msg) { |
| 115 | if (!isLoggable(level)) { |
| 116 | return; |
| 117 | } |
| 118 | publish(new LogRecord(name, sourceMethod, level, msg, null)); |
| 119 | } |
| 120 | |
| 121 | public void logp(Level level, String sourceClass, String sourceMethod, |
| 122 | String msg, Throwable thrown) { |
nothing calls this directly
no test coverage detected