Author: sergeyb
Date: Tue Aug 7 08:47:04 2012
New Revision: 1370143
URL: http://svn.apache.org/viewvc?rev=1370143&view=rev
Log:
Merged revisions 1370142 via svnmerge from
https://svn.apache.org/repos/asf/cxf/trunk
........
r1370142 | sergeyb | 2012-08-07 11:37:33 +0300 (Tue, 07 Aug 2012) | 1 line
Optionally logging the kerberos service principal name
........
Modified:
cxf/branches/2.6.x-fixes/ (props changed)
cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/AbstractSpnegoAuthSupplier.java
Propchange: cxf/branches/2.6.x-fixes/
------------------------------------------------------------------------------
svn:mergeinfo = /cxf/trunk:1370142
Propchange: cxf/branches/2.6.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/AbstractSpnegoAuthSupplier.java
URL:
http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/AbstractSpnegoAuthSupplier.java?rev=1370143&r1=1370142&r2=1370143&view=diff
==============================================================================
---
cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/AbstractSpnegoAuthSupplier.java
(original)
+++
cxf/branches/2.6.x-fixes/rt/transports/http/src/main/java/org/apache/cxf/transport/http/auth/AbstractSpnegoAuthSupplier.java
Tue Aug 7 08:47:04 2012
@@ -170,6 +170,9 @@ public abstract class AbstractSpnegoAuth
if (realm != null) {
name += "@" + realm;
}
+ if (LOG.isLoggable(Level.FINE)) {
+ LOG.fine("Service Principal Name is " + name);
+ }
return name;