diff --git a/index.js b/index.js index d05095a..c66999a 100644 --- a/index.js +++ b/index.js @@ -15,6 +15,7 @@ var smartDebug = { }, activate: function (debugArg) { debugActive = debugArg; + beautylog.log("#### ".rainbow + "!!! ".red + "Debugging has been activated!".blue + " !!!".red + " ####".rainbow); }, getStatus: function () { return debugActive; diff --git a/ts/index.ts b/ts/index.ts index 56252c0..b3b149e 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -16,6 +16,7 @@ var smartDebug = { }, activate: function(debugArg:boolean){ debugActive = debugArg; + beautylog.log("#### ".rainbow + "!!! ".red + "Debugging has been activated!".blue + " !!!".red + " ####".rainbow); }, getStatus: function(){ return debugActive;