This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Disable E-mail notifications | |
#MAILTO="" | |
## Set where to look for executable files | |
#PATH=/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:$PATH | |
## | |
## Entry Equivalent Description | |
## @yearly 0 0 1 1 * Run once a year at midnight in the morning of January 1 | |
## @annually 0 0 1 1 * Run once a year at midnight in the morning of January 1 | |
## @monthly 0 0 1 * * Run once a month at midnight in the morning of the first of the month | |
## @weekly 0 0 * * 0 Run once a week at midnight in the morning of Sunday |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Logger = function(enable, prefix) { | |
this.log = {}; | |
if ((typeof globalEnableLogger !== 'undefined' && globalEnableLogger == false) || enable == false) { | |
for(var m in console) { | |
if(typeof console[m] == 'function') { | |
this.log[m] = function(){}; | |
} | |
} | |
} else if (enable && typeof enable === 'string') { | |
for (var m in console) { |