Skip to content

Commit

Permalink
EleventyServe.js: update debug namespace
Browse files Browse the repository at this point in the history
All the other Eleventy modules have the `Eleventy:` prefix for their `debug()` namespace (including modules that have “Eleventy” in their name).

I think this was the only one doing it different.  It might make a difference for anyone filtering their debug messages with `Eleventy:*`.
  • Loading branch information
Zearin committed May 1, 2023
1 parent 8e88b07 commit 10e8a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EleventyServe.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const PathPrefixer = require("./Util/PathPrefixer");
const merge = require("./Util/Merge");
const checkPassthroughCopyBehavior = require("./Util/PassthroughCopyBehaviorCheck");

const debug = require("debug")("EleventyServe");
const debug = require("debug")("Eleventy:EleventyServe");

class EleventyServeConfigError extends EleventyBaseError {}

Expand Down

0 comments on commit 10e8a0f

Please sign in to comment.