Home | History | Annotate | Download | only in log4testng

Lines Matching refs:TRACE

20  * TRACE, DEBUG, INFO, WARN, ERROR and FATAL.

41 * # The org.testng.reporters.EmailableReporter Logger will log TRACE level and above
42 * log4testng.logger.org.testng.reporters.EmailableReporter=TRACE
67 private static final int TRACE= i++;
97 levelNames[TRACE]= "TRACE";
105 /** A map from level name to level integer index (TRACE->0, DEBUG->1 ...) */
160 * Check whether this logger is enabled for the TRACE Level.
161 * @return true if this logger is enabled for level TRACE, false otherwise.
164 return isLevelEnabled(TRACE);
168 * Log a message object with the TRACE level. This method first checks if this
169 * logger is TRACE enabled. If this logger is TRACE enabled, then it converts
172 * the Throwable but no stack trace. To print a stack trace use the
173 * trace(Object, Throwable) form instead.
176 public void trace(Object message) {
177 log(TRACE, message, null);
181 * Log a message object with the TRACE level including the stack trace of the
183 * See Logger.trace(Object) form for more detailed information.
185 * @param t the exception to log, including its stack trace.
187 public void trace(Object message, Throwable t) {
188 log(TRACE, message, t);
201 * See Logger.trace(Object) form for more detailed information.
209 * Log a message object with the DEBUG level including the stack trace of the
211 * See Logger.trace(Object, Throwable) form for more detailed information.
213 * @param t the exception to log, including its stack trace.
229 * See Logger.trace(Object) form for more detailed information.
237 * Log a message object with the WARN level including the stack trace of the
239 * See Logger.trace(Object, Throwable) form for more detailed information.
241 * @param t the exception to log, including its stack trace.
249 * See Logger.trace(Object) form for more detailed information.
257 * Log a message object with the ERROR level including the stack trace of the
259 * See Logger.trace(Object, Throwable) form for more detailed information.
261 * @param t the exception to log, including its stack trace.
269 * See Logger.trace(Object) form for more detailed information.
277 * Log a message object with the DEBUG level including the stack trace of the
279 * See Logger.trace(Object, Throwable) form for more detailed information.
281 * @param t the exception to log, including its stack trace.
289 * See Logger.trace(Object) form for more detailed information.
297 * Log a message object with the FATAL level including the stack trace of the
299 * See Logger.trace(Object, Throwable) form for more detailed information.
301 * @param t the exception to log, including its stack trace.
570 strLogger.trace("trace should not appear");
604 strLogger.trace("trace should appear");
647 strLogger.trace("trace should not appear");
699 strLogger.trace("trace should not appear");