From 17b469a49859b61f296d6a7a2fe4f1de2c6be79b Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Tue, 25 Sep 2018 13:50:56 +0200 Subject: [PATCH] =?UTF-8?q?Added=20=F0=9F=94=8C=20to=20plugin=20loaded=20d?= =?UTF-8?q?ebug=20message?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pattern.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pattern.js b/src/pattern.js index 7def7052eaf..a3f8f49288f 100644 --- a/src/pattern.js +++ b/src/pattern.js @@ -277,7 +277,7 @@ Pattern.prototype.on = function(hook, method) { }; Pattern.prototype.with = function(plugin) { - this.debug("success", "Plugin loaded", `${plugin.name} v${plugin.version}`); + this.debug("success", "🔌 Plugin loaded", `${plugin.name} v${plugin.version}`); if (plugin.hooks) this.loadPluginHooks(plugin); if (plugin.macros) this.loadPluginMacros(plugin);