From d2bbac5c73611fbf1d2c9a767e1b9ad910996747 Mon Sep 17 00:00:00 2001
From: Jean-Noel Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 31 Jan 2014 08:45:55 +0000
Subject: [PATCH] Removed calls to toString() when calling a logger method. Also removed funny things like this:     LocalizableMessage msg = ...;     logger.debug(LocalizableMessage.raw(msg.toString()));

---
 opendj3-server-dev/src/server/org/opends/server/replication/plugin/EntryHistorical.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/replication/plugin/EntryHistorical.java b/opendj3-server-dev/src/server/org/opends/server/replication/plugin/EntryHistorical.java
index 319d52f..ad7d95e 100644
--- a/opendj3-server-dev/src/server/org/opends/server/replication/plugin/EntryHistorical.java
+++ b/opendj3-server-dev/src/server/org/opends/server/replication/plugin/EntryHistorical.java
@@ -725,7 +725,7 @@
       // Any exception happening here means that the coding of the historical
       // information was wrong.
       // Log an error and continue with an empty historical.
-      logger.error(ERR_BAD_HISTORICAL, entry.getName().toString());
+      logger.error(ERR_BAD_HISTORICAL, entry.getName());
     }
 
     /* set the reference to the historical information in the entry */

--
Gitblit v1.10.0