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/tools/SSLConnectionFactory.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/SSLConnectionFactory.java b/opends/src/server/org/opends/server/tools/SSLConnectionFactory.java
index 5ef1cd7..dac928f 100644
--- a/opends/src/server/org/opends/server/tools/SSLConnectionFactory.java
+++ b/opends/src/server/org/opends/server/tools/SSLConnectionFactory.java
@@ -45,7 +45,7 @@
import static org.opends.server.messages.ToolMessages.*;
import static org.opends.server.messages.MessageHandler.*;
-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;
@@ -247,7 +247,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_TOOLS_CANNOT_LOAD_KEYSTORE_FILE;
throw new SSLConnectionException(getMessage(msgID, keyStoreFile), e);
@@ -265,7 +265,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, ke);
+ debugCaught(DebugLogLevel.ERROR, ke);
}
int msgID = MSGID_TOOLS_CANNOT_INIT_KEYMANAGER;
throw new SSLConnectionException(getMessage(msgID, keyStoreFile), ke);
@@ -339,7 +339,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_TOOLS_CANNOT_LOAD_TRUSTSTORE_FILE;
throw new SSLConnectionException(getMessage(msgID, trustStoreFile), e);
@@ -357,7 +357,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, ke);
+ debugCaught(DebugLogLevel.ERROR, ke);
}
int msgID = MSGID_TOOLS_CANNOT_INIT_TRUSTMANAGER;
throw new SSLConnectionException(getMessage(msgID, trustStoreFile), ke);
--
Gitblit v1.10.0