cleanup logging
This commit is contained in:
parent
551f45d9c2
commit
427b729b86
10
desirae.js
10
desirae.js
|
@ -223,10 +223,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log('');
|
|
||||||
console.log('');
|
|
||||||
console.info('getting config, data, caches...');
|
|
||||||
|
|
||||||
function clone(obj) {
|
function clone(obj) {
|
||||||
return JSON.parse(JSON.stringify(obj));
|
return JSON.parse(JSON.stringify(obj));
|
||||||
}
|
}
|
||||||
|
@ -238,7 +234,7 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Desi.toLocaleDate = function (d) {
|
Desi.toDesiDate = Desi.toLocaleDate = function (d) {
|
||||||
return d.getFullYear() + '-' + pad(d.getMonth() + 1) + '-' + pad(d.getDate())
|
return d.getFullYear() + '-' + pad(d.getMonth() + 1) + '-' + pad(d.getDate())
|
||||||
+ ' '
|
+ ' '
|
||||||
+ (d.getHours() % 12) + ':' + pad(d.getMinutes()) + ' ' + (d.getHours() - 12 >= 0 ? 'pm' : 'am')
|
+ (d.getHours() % 12) + ':' + pad(d.getMinutes()) + ' ' + (d.getHours() - 12 >= 0 ? 'pm' : 'am')
|
||||||
|
@ -247,6 +243,10 @@
|
||||||
|
|
||||||
// read config and such
|
// read config and such
|
||||||
Desi.init = function (desi, env) {
|
Desi.init = function (desi, env) {
|
||||||
|
console.log('');
|
||||||
|
console.log('');
|
||||||
|
console.info('getting config, data, caches...');
|
||||||
|
|
||||||
if (!exports.window) {
|
if (!exports.window) {
|
||||||
// TODO pull state out of this later
|
// TODO pull state out of this later
|
||||||
Desi.realFsapi.create(Desi, env);
|
Desi.realFsapi.create(Desi, env);
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
;
|
;
|
||||||
|
|
||||||
function escapeRegExp(str) {
|
function escapeRegExp(str) {
|
||||||
console.log('hello', str);
|
|
||||||
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
|
return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue