Method
log
(String configKey, String format, Object... args)
Source from the content-addressed store, hash-verified
| 60 | } |
| 61 | |
| 62 | @Override |
| 63 | protected void log(String configKey, String format, Object... args) { |
| 64 | // Not using SLF4J's support for parameterized messages (even though it would be more efficient) |
| 65 | // because it would |
| 66 | // require the incoming message formats to be SLF4J-specific. |
| 67 | if (logger.isDebugEnabled()) { |
| 68 | logger.debug(String.format(methodTag(configKey) + format, args)); |
| 69 | } |
| 70 | } |
| 71 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected