Home
last modified time | relevance | path

Searched refs:stackLogger (Results 1 – 6 of 6) sorted by relevance

/external/nist-sip/java/gov/nist/core/
DDebug.java40 static StackLogger stackLogger; field in Debug
42 public static void setStackLogger(StackLogger stackLogger) { in setStackLogger() argument
43 Debug.stackLogger = stackLogger; in setStackLogger()
47 if ((parserDebug || debug )&& stackLogger != null ) in println()
48 stackLogger.logDebug(s + "\n"); in println()
51 if ((parserDebug || debug ) && stackLogger != null) { in printStackTrace()
52 stackLogger.logError("Stack Trace",ex); in printStackTrace()
57 if ((parserDebug || debug) && stackLogger != null ) { in logError()
58 stackLogger.logError(message,ex); in logError()
DInternalErrorHandler.java51 public static void handleException(Exception ex, StackLogger stackLogger) { in handleException() argument
53 stackLogger.logError("UNEXPECTED INTERNAL ERROR FIXME " + ex.getMessage()); in handleException()
55 stackLogger.logException(ex); in handleException()
71 public static void handleException(String emsg, StackLogger stackLogger) { in handleException() argument
72 stackLogger.logStackTrace(); in handleException()
73 stackLogger.logError("Unexepcted INTERNAL ERROR FIXME!!"); in handleException()
74 stackLogger.logFatalError(emsg); in handleException()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPTransactionStack.java174 private StackLogger stackLogger; field in SIPTransactionStack
482 if (stackLogger.isLoggingEnabled()) in reInit()
483 stackLogger.logDebug("Re-initializing !"); in reInit()
590 if (stackLogger.isLoggingEnabled()) in addExtensionMethod()
591 stackLogger.logDebug("NOTIFY Supported Natively"); in addExtensionMethod()
606 if (stackLogger.isLoggingEnabled()) { in putDialog()
607 stackLogger.logDebug("putDialog: dialog already exists" + dialogId + " in table = " in putDialog()
612 if (stackLogger.isLoggingEnabled()) { in putDialog()
613 stackLogger.logDebug("putDialog dialogId=" + dialogId + " dialog = " + dialog); in putDialog()
616 if (stackLogger.isLoggingEnabled()) in putDialog()
[all …]
DServerLog.java67 protected StackLogger stackLogger; field in ServerLog
222 stackLogger in checkLogFile()
251 stackLogger.logDebug(" ]]> "); in checkLogFile()
252 stackLogger.logDebug("</debug>"); in checkLogFile()
253 stackLogger.logDebug("<description\n logDescription=\"" + description in checkLogFile()
256 stackLogger.logDebug("<debug>"); in checkLogFile()
257 stackLogger.logDebug("<![CDATA[ "); in checkLogFile()
262 stackLogger.logDebug("Here are the stack configuration properties \n" in checkLogFile()
264 stackLogger.logDebug(" ]]>"); in checkLogFile()
265 stackLogger.logDebug("</debug>"); in checkLogFile()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DMessageDigestAlgorithm.java41 StackLogger stackLogger) { in calculateResponse() argument
42 if (stackLogger.isLoggingEnabled()) { in calculateResponse()
43 stackLogger.logDebug("trying to authenticate using : " + algorithm + ", "+ in calculateResponse()
117 StackLogger stackLogger) { in calculateResponse() argument
118 if (stackLogger.isLoggingEnabled()) { in calculateResponse()
119 stackLogger.logDebug("trying to authenticate using : " + algorithm + ", " in calculateResponse()
/external/nist-sip/java/gov/nist/javax/sip/
DSipStackImpl.java567 StackLogger stackLogger = (StackLogger) cons.newInstance(args); in SipStackImpl() local
568 stackLogger.setStackProperties(configurationProperties); in SipStackImpl()
569 super.setStackLogger(stackLogger); in SipStackImpl()