From 4f5ed08ca132d07338d51dbd2101324218cd7d55 Mon Sep 17 00:00:00 2001 From: mikekotikov Date: Tue, 19 Nov 2024 15:23:48 +0300 Subject: [PATCH] FIO-7554: Fix message when keys provided --- src/authenticate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authenticate.js b/src/authenticate.js index 4f3c937..b7a1bdf 100644 --- a/src/authenticate.js +++ b/src/authenticate.js @@ -60,7 +60,7 @@ module.exports = function(config) { // If the API Key is provided. if (options.key || options.adminKey || (options.srcAdminKey && options.dstAdminKey)) { - console.log('An API Key was provided. Authenticated as Project Owner.'); + console.log('An API Key was provided for authentication'); console.log(''); return next(null); }