Searched defs:logCause (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/logging/
H A DLogger.java311 * If {@code logCause} parameter is {@code true}, {@code exception}'s original
320 * @param logCause deterimnes whether initial cause of the exception should
325 public <T extends Throwable> T logSevereException(final T exception, final boolean logCause) { argument
327 if (logCause && exception.getCause() != null) {
385 * If {@code logCause} parameter is {@code true}, {@code exception}'s original
394 * @param logCause deterimnes whether initial cause of the exception should
400 public <T extends Throwable> T logException(final T exception, final boolean logCause, final Level level) { argument
402 if (logCause && exception.getCause() != null) {

Completed in 23 milliseconds