From f821f4d9cc6f1f5cca4220293685601653737d23 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 17 Jan 2019 22:13:10 +0100 Subject: [PATCH] fix(core): update --- ts/smartacme.classes.smartacme.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/smartacme.classes.smartacme.ts b/ts/smartacme.classes.smartacme.ts index 3da7998..03086f0 100644 --- a/ts/smartacme.classes.smartacme.ts +++ b/ts/smartacme.classes.smartacme.ts @@ -56,9 +56,11 @@ export class SmartAcme { res: plugins.smartexpress.Response ) => { const requestBody: interfaces.ICertRemoteRequest = req.body; + this.logger.log('ok', `got certificate request for ${requestBody.domainName}`); const certDomain = this.certmatcher.getCertificateDomainNameByDomainName( requestBody.domainName ); + this.logger.log('ok', `mapping ${requestBody.domainName} to ${certDomain}`); let status: interfaces.TCertStatus = await this.certmanager.getCertificateStatus(certDomain); let response: interfaces.ICertRemoteResponse; switch (status) {