summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/profile
diff options
context:
space:
mode:
authorawnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2009-07-10 19:53:48 +0000
committerawnuk <awnuk@c9f7a03b-bd48-0410-a16d-cbbf54688b0b>2009-07-10 19:53:48 +0000
commit285dddb0376bcf2100cae427e47884ca1dcabae2 (patch)
tree98fac53217f71b75aa110a5b1236f65dd7e897c9 /pki/base/common/src/com/netscape/cms/profile
parent3dca68488eaefa58bda18db6b6afb20bca1a3e40 (diff)
downloadpki-285dddb0376bcf2100cae427e47884ca1dcabae2.tar.gz
pki-285dddb0376bcf2100cae427e47884ca1dcabae2.tar.xz
pki-285dddb0376bcf2100cae427e47884ca1dcabae2.zip
Extra debug info for bugzilla bug #357581.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@694 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/profile')
-rw-r--r--pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java b/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
index c9b521280..297a6f1c8 100644
--- a/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
+++ b/pki/base/common/src/com/netscape/cms/profile/common/EnrollProfile.java
@@ -791,8 +791,9 @@ public abstract class EnrollProfile extends BasicProfile
// parse validity
if (certTemplate.getNotBefore() != null ||
certTemplate.getNotAfter() != null) {
- CMS.debug("EnrollProfile: notBefore: " + certTemplate.getNotBefore());
- CMS.debug("EnrollProfile: notAfter: " + certTemplate.getNotAfter());
+ CMS.debug("EnrollProfile: requested notBefore: " + certTemplate.getNotBefore());
+ CMS.debug("EnrollProfile: requested notAfter: " + certTemplate.getNotAfter());
+ CMS.debug("EnrollProfile: current CA time: " + new Date());
CertificateValidity certValidity = new CertificateValidity(
certTemplate.getNotBefore(), certTemplate.getNotAfter());
ByteArrayOutputStream certValidityOut =