2 Commits

Author SHA1 Message Date
Philipp Kunz
1f09d67196 0.0.10 2015-12-02 14:01:54 +01:00
Philipp Kunz
bdf0c9b066 show Debug activated message by default 2015-12-02 14:01:47 +01:00
3 changed files with 3 additions and 1 deletions

View File

@@ -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;

View File

@@ -1,6 +1,6 @@
{
"name": "smartdebug",
"version": "0.0.9",
"version": "0.0.10",
"description": "debug your JavaScript the smart way",
"main": "index.js",
"scripts": {

View File

@@ -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;