From a6e1ec928120045594387730b5a5ed489108c60d Mon Sep 17 00:00:00 2001 From: Pascal Euhus Date: Wed, 6 Mar 2024 16:33:49 +0100 Subject: [PATCH] Add File exclusion property --- lib/service/PageService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/service/PageService.ts b/lib/service/PageService.ts index 5ab4df5..6c91ba9 100644 --- a/lib/service/PageService.ts +++ b/lib/service/PageService.ts @@ -74,7 +74,7 @@ const buildPageStructure = async ( continue; } if (excludedFiles && fileIsExcluded(fileName, excludedFiles)) { - LOGGER.info( + LOGGER.debug( `Skipping ${fileName} because it has been explicitly excluded`, ); continue;