MCPcopy Index your code
hub / github.com/apache/groovy / debug

Method debug

src/main/java/org/codehaus/groovy/tools/shell/util/Logger.java:121–125  ·  view source on GitHub ↗

Logs a debug message when debug output is enabled. @param msg the message to log

(final Object msg)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

isDebugEnabledMethod · 0.95
logMethod · 0.95

Tested by

no test coverage detected