From 01fd6184364583f7bb070f8c34cc4f0305dedc7a Mon Sep 17 00:00:00 2001 From: Scott Battaglia Date: Sat, 5 Jun 2010 17:25:34 +0000 Subject: [PATCH] CASC-112 added brackets around the pgtIou to make it more obvious the message isn't cut off. --- .../cas/client/proxy/ProxyGrantingTicketStorageImpl.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cas-client-core/src/main/java/org/jasig/cas/client/proxy/ProxyGrantingTicketStorageImpl.java b/cas-client-core/src/main/java/org/jasig/cas/client/proxy/ProxyGrantingTicketStorageImpl.java index b676c82..b49eca4 100644 --- a/cas-client-core/src/main/java/org/jasig/cas/client/proxy/ProxyGrantingTicketStorageImpl.java +++ b/cas-client-core/src/main/java/org/jasig/cas/client/proxy/ProxyGrantingTicketStorageImpl.java @@ -25,8 +25,7 @@ import org.apache.commons.logging.LogFactory; * @version $Revision: 11729 $ $Date: 2007-09-26 14:22:30 -0400 (Tue, 26 Sep 2007) $ * @since 3.0 */ -public final class ProxyGrantingTicketStorageImpl implements - ProxyGrantingTicketStorage { +public final class ProxyGrantingTicketStorageImpl implements ProxyGrantingTicketStorage { private final Log log = LogFactory.getLog(getClass()); @@ -74,14 +73,14 @@ public final class ProxyGrantingTicketStorageImpl implements .get(proxyGrantingTicketIou); if (holder == null) { - log.info("No Proxy Ticket found for " + proxyGrantingTicketIou); + log.info("No Proxy Ticket found for [" + proxyGrantingTicketIou + "]."); return null; } this.cache.remove(holder); if (log.isDebugEnabled()) { - log.debug("Returned ProxyGrantingTicket of " + holder.getProxyGrantingTicket()); + log.debug("Returned ProxyGrantingTicket of [" + holder.getProxyGrantingTicket() + "]"); } return holder.getProxyGrantingTicket(); }