From 26dd3d2fa09e3fcafdd43c9c3a79fa90143e668a Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Fri, 18 May 2018 19:38:00 +0300 Subject: [PATCH] fix: a missed argument in a debug message --- lib/file-list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/file-list.js b/lib/file-list.js index b3b27b866..13129cd32 100644 --- a/lib/file-list.js +++ b/lib/file-list.js @@ -176,7 +176,7 @@ class FileList { const file = new File(path, mtime, doNotCache, type) if (file.doNotCache) { - log.debug('Not preprocessing "%s" due to nocache') + log.debug('Not preprocessing "%s" due to nocache', pattern) return Promise.resolve(file) }