Logs a debug message when debug output is enabled. @param msg the message to log
(final Object msg)
| 119 | * @param msg the message to log |
| 120 | */ |
| 121 | public void debug(final Object msg) { |
| 122 | if (isDebugEnabled()) { |
| 123 | log(DEBUG, msg, null); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Logs a debug message and cause when debug output is enabled. |
nothing calls this directly
no test coverage detected