From c0b81902f50d408ea8483bce687da50cc1284379 Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Fri, 4 Feb 2022 23:06:53 +0100 Subject: [PATCH] clientCert: fix up error message --- src/plugins/clientCertificate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/clientCertificate.js b/src/plugins/clientCertificate.js index 071924c5..ba5617c3 100644 --- a/src/plugins/clientCertificate.js +++ b/src/plugins/clientCertificate.js @@ -30,7 +30,7 @@ function get(uuid) { certificate: fs.readFileSync(paths.certificatePath, "utf-8"), }; } catch (e) { - log.error("Unable to remove certificate", e); + log.error("Unable to get certificate", e); } return null;