Method
log
(String configKey, String format, Object... args)
Source from the content-addressed store, hash-verified
| 234 | } |
| 235 | |
| 236 | @Override |
| 237 | protected void log(String configKey, String format, Object... args) { |
| 238 | if (logger.isLoggable(java.util.logging.Level.FINE)) { |
| 239 | logger.fine(String.format(methodTag(configKey) + format, args)); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Helper that configures java.util.logging to sanely log messages at FINE level without |
Callers
nothing calls this directly
Tested by
no test coverage detected