summaryrefslogtreecommitdiffstats
path: root/node_modules/webpack/lib/logging/runtime.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/webpack/lib/logging/runtime.js')
-rw-r--r--node_modules/webpack/lib/logging/runtime.js36
1 files changed, 36 insertions, 0 deletions
diff --git a/node_modules/webpack/lib/logging/runtime.js b/node_modules/webpack/lib/logging/runtime.js
new file mode 100644
index 0000000..18e2148
--- /dev/null
+++ b/node_modules/webpack/lib/logging/runtime.js
@@ -0,0 +1,36 @@
+const SyncBailHook = require("tapable/lib/SyncBailHook");
+const { Logger } = require("./Logger");
+const createConsoleLogger = require("./createConsoleLogger");
+
+/** @type {createConsoleLogger.LoggerOptions} */
+let currentDefaultLoggerOptions = {
+ level: "info",
+ debug: false,
+ console
+};
+let currentDefaultLogger = createConsoleLogger(currentDefaultLoggerOptions);
+
+/**
+ * @param {string} name name of the logger
+ * @returns {Logger} a logger
+ */
+exports.getLogger = name => {
+ return new Logger((type, args) => {
+ if (exports.hooks.log.call(name, type, args) === undefined) {
+ currentDefaultLogger(name, type, args);
+ }
+ });
+};
+
+/**
+ * @param {createConsoleLogger.LoggerOptions} options new options, merge with old options
+ * @returns {void}
+ */
+exports.configureDefaultLogger = options => {
+ Object.assign(currentDefaultLoggerOptions, options);
+ currentDefaultLogger = createConsoleLogger(currentDefaultLoggerOptions);
+};
+
+exports.hooks = {
+ log: new SyncBailHook(["origin", "type", "args"])
+};