From d191715b61d0776d8277b2ae5f87726bc53b3e01 Mon Sep 17 00:00:00 2001 From: Phil Adams Date: Fri, 22 Mar 2024 14:14:47 -0500 Subject: [PATCH] fix(ibm-major-version-in-path): remove extraneous debug message (#655) Signed-off-by: Phil Adams --- packages/ruleset/src/functions/check-major-version.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/ruleset/src/functions/check-major-version.js b/packages/ruleset/src/functions/check-major-version.js index 2fd100d4f..1985f7dc5 100644 --- a/packages/ruleset/src/functions/check-major-version.js +++ b/packages/ruleset/src/functions/check-major-version.js @@ -22,7 +22,6 @@ module.exports = function (apiDef, _opts, context) { // - Each path has a path segment of the form v followed by a number, and the number is // the same for all paths function checkMajorVersion(apiDef) { - logger.debug(`${ruleId}: entered function checkMajorVersion().`); if (apiDef === null || typeof apiDef !== 'object') { return []; }