From 061e0172510debb6cd8920caa717c29a10e1b233 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Thu, 01 Mar 2007 23:48:24 +0000
Subject: [PATCH] Fixed spelling error of a debug method (org.opends.server.loggers.debug.DebugLogger.debugCought should be debugCaught).
---
opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java b/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
index 3846b8c..a6d1f1d 100644
--- a/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
+++ b/opends/src/server/org/opends/server/extensions/TLSConnectionSecurityProvider.java
@@ -52,7 +52,7 @@
import org.opends.server.types.SSLClientAuthPolicy;
import org.opends.server.util.SelectableCertificateKeyManager;
-import static org.opends.server.loggers.debug.DebugLogger.debugCought;
+import static org.opends.server.loggers.debug.DebugLogger.debugCaught;
import static org.opends.server.loggers.debug.DebugLogger.debugEnabled;
import org.opends.server.types.DebugLogLevel;
import static org.opends.server.messages.ExtensionsMessages.*;
@@ -208,7 +208,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_TLS_SECURITY_PROVIDER_CANNOT_INITIALIZE;
@@ -454,7 +454,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
}
}
@@ -641,7 +641,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, ioe);
+ debugCaught(DebugLogLevel.ERROR, ioe);
}
// An error occurred while trying to communicate with the client.
@@ -653,7 +653,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
// An unexpected error occurred while trying to process the data read.
@@ -941,7 +941,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, ioe);
+ debugCaught(DebugLogLevel.ERROR, ioe);
}
// An error occurred while trying to communicate with the client.
@@ -953,7 +953,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
// An unexpected error occurred while trying to process the data read.
@@ -1075,7 +1075,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
return null;
--
Gitblit v1.10.0