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) {