From c6ef81fa2da241b4b67df6892aaf784f6c4f9d2b Mon Sep 17 00:00:00 2001 From: shadow-light <42055707+shadow-light@users.noreply.github.com> Date: Thu, 7 Apr 2022 14:16:46 +1000 Subject: [PATCH] Identify this plugin as source of console message --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 61c9e07..6be80b6 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -332,7 +332,7 @@ export function tokenLength( return token.loc.end.column - token.loc.start.column; } - console.debug('Please report token:', JSON.stringify(token)); + console.debug('[plugin:vue-pug-sfc] Please report token:', JSON.stringify(token)); return 0; }