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/core/LockFileManager.java | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/opends/src/server/org/opends/server/core/LockFileManager.java b/opends/src/server/org/opends/server/core/LockFileManager.java
index a3e4767..b332d1b 100644
--- a/opends/src/server/org/opends/server/core/LockFileManager.java
+++ b/opends/src/server/org/opends/server/core/LockFileManager.java
@@ -37,7 +37,7 @@
import org.opends.server.api.Backend;
-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.CoreMessages.*;
@@ -127,7 +127,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_LOCK_SHARED_FAILED_CREATE;
@@ -148,7 +148,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_LOCK_SHARED_FAILED_OPEN;
@@ -168,7 +168,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_LOCK_SHARED_FAILED_LOCK;
@@ -252,7 +252,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_LOCK_EXCLUSIVE_FAILED_CREATE;
@@ -273,7 +273,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_LOCK_EXCLUSIVE_FAILED_OPEN;
@@ -293,7 +293,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_LOCK_EXCLUSIVE_FAILED_LOCK;
@@ -361,7 +361,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_UNLOCK_EXCLUSIVE_FAILED_RELEASE;
@@ -378,7 +378,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
// Even though we couldn't close the channel for some reason, this
@@ -409,7 +409,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
int msgID = MSGID_FILELOCKER_UNLOCK_SHARED_FAILED_RELEASE;
@@ -426,7 +426,7 @@
{
if (debugEnabled())
{
- debugCought(DebugLogLevel.ERROR, e);
+ debugCaught(DebugLogLevel.ERROR, e);
}
// Even though we couldn't close the channel for some reason, this
--
Gitblit v1.10.0