From af8c6e407fa88de1b8ee034cf41a4c83ad832877 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Sat, 19 May 2018 02:29:32 +0300 Subject: [PATCH] fix: a missed argument in a debug message (#3009) --- 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) }