Skip to content

Commit e772435

Browse files
committed
Adding error message and stack trace dump to CRL downloading.
1 parent 85f0740 commit e772435

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<artifactId>agent</artifactId>
66
<name>Direct Project Security And Trust Agent</name>
7-
<version>8.1.2</version>
7+
<version>8.1.3-SNAPSHOT</version>
88
<description>Direct Project Security And Trust Agent</description>
99
<inceptionYear>2010</inceptionYear>
1010
<url>https://github.com/DirectProjectJavaRI/agent</url>

src/main/java/org/nhindirect/stagent/cert/impl/CRLRevocationManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ protected X509CRL getCrlFromUri(String crlUrlString)
400400
}
401401
catch (Exception e)
402402
{
403-
log.warn("Unable to retrieve or parse CRL from URI {}", crlUrlString);
403+
log.warn("Unable to retrieve or parse CRL from URI {}: {}", crlUrlString, e.getMessage(), e);
404404
}
405405
}
406406

0 commit comments

Comments
 (0)