-
Notifications
You must be signed in to change notification settings - Fork 1
/
logr.js
293 lines (269 loc) · 7.08 KB
/
logr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/*!
* Logr
* http://github.com/eclifford/logr
*
* Author: Eric Clifford
* Email: [email protected]
* Date: 10.13.2014
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define([], function() {
return (root.Logr = factory(root));
});
} else if (typeof exports !== 'undefined') {
module.exports = factory(root);
} else {
root.Logr = factory(root);
}
}(this, function(root) {
// 'use strict';
var Logr = {
version: '0.2.2',
logs: {},
defaults: {},
currentLevel: 1,
levels: {
LOG: 1,
INFO: 2,
WARN: 3,
ERROR: 4,
NONE: 9
},
/**
* Set internal logging level for all logs
*
* @example
* Logr.setLevel(Logr.levels.DEBUG)
*
* @param {Number} level the level to set the log to
* @api public
*/
setLevel: function(level) {
if (isNaN(level)) {
throw new Error("Logr.setLevel(): expects parameter level of type Number");
}
Logr.currentLevel = level;
for (var log in Logr.logs) {
Logr.logs[log].setLevel(level);
}
},
/**
* Get or create a contextual log instance
*
* @example
* Logr.log('foo')
*
* @param {String} logname the name of the contextual log
* @param {Object} options the instance options
* @api public
*/
log: function(logname, options) {
if (typeof logname !== "string") {
throw new Error("Logr.log(): expects parameter logname of type String");
}
// create a new log
if (!Logr.logs[logname]) {
Logr.logs[logname] = new Log(logname, options || {});
}
// return an existing log
return Logr.logs[logname];
}
};
/**
* Log object constructor
*
* @example
* var log = new Log('foo')
*
* @param {String} logname the name of the log instance
* @param {Object} options the instance options
*/
var Log = function(logname, options) {
if (typeof logname !== 'string') {
throw new Error("Logr.Log: expects parameter logname of type String");
}
this.logname = logname;
extend(this, Logr.defaults, options || {});
// setup the console logging
this.init();
};
/**
* Initialize Logr
*/
Log.prototype.init = function() {
var logs = [
"log",
"info",
"warn",
"error"
],
noop = function() {};
// proxy all console calls to real methods
for (var i = 0; i < logs.length; i++) {
if (console && console[logs[i]] && this.getLevel() <= Logr.levels[logs[i].toUpperCase()]) {
this[logs[i]] = Function.prototype.bind.call(console[logs[i]], console, "[" + this.logname + "]");
} else {
this[logs[i]] = noop;
}
}
// backwards compatibility
this.debug = this.log;
};
/**
* Set the logging level for this instance
*
* @example
* var log = Logr.log('foo');
* log.setLevel(Logr.levels.DEBUG);
*
* @param {Number} level the level to set the instance to
*/
Log.prototype.setLevel = function(level) {
if (root.sessionStorage) {
root.sessionStorage.setItem("logr:" + this.logname + ":level", level);
}
this.level = level;
this.init();
};
/**
* Get the logging level for this instance
*
* @example
* var log = Logr.log('foo');
* log.getLevel();
*
* @return {Number} the level to set the instance to
*/
Log.prototype.getLevel = function() {
if (root.sessionStorage) {
sessionLevel = root.sessionStorage.getItem("logr:" + this.logname + ":level");
}
return sessionLevel || this.level || Logr.currentLevel;
};
/**
* Attach logging instance to object
*
* @example
* var log = Logr.log('foo');
* log.attach({})
*
* @param {Object} obj the object to attach
*/
Log.prototype.attach = function(obj) {
var self = this,
prop, fn, value;
// enumerate all properties on object proxing all functions except the constructor
for (prop in obj) {
if (prop !== null && typeof obj[prop] === 'object') {
self.attach(obj[prop]);
continue;
}
// wrap functions that aren't by convention Constructors
if (obj[prop] && typeof obj[prop] === 'function' && !(/^[A-Z]/g.test(prop))) {
self.wrap(obj, prop);
}
}
};
/**
* Process exception and return formatted output
*
* @param {Exception} e the exception to format
*/
Log.prototype.getExceptionLineNumber = function(e) {
var result = [];
// safari
if (e.stack && e.sourceURL) {
result = e.stack.match(/@.*/g);
return result ? result[1] : "";
}
// firefox
if (e.stack && e.fileName) {
result = e.stack.match(/@.*/g);
return result ? result[1] : "";
}
// ie
if (e.stack && e.number) {
result = e.stack.match(/@.*/g);
return result ? result[1] : "";
}
// chrome
if (e.stack) {
result = e.stack.match(/\(.*\)/g);
return result ? result[1] : "";
}
return "";
};
/**
* Wrap original function with custom logging logic
*
* @example
* var log = Logr.log('foo');
* log.attach({})
*
* @param {Object} obj the object to attach
*/
Log.prototype.wrap = function(obj, prop) {
var self = this,
func;
func = obj[prop];
obj[prop] = function logr() {
var stackMessage = "";
if (self.getLevel() <= Logr.levels.LOG) {
// force an exception to get original calling location
try {
this.undef();
} catch (e) {
stackMessage = self.getExceptionLineNumber(e);
}
// grouping supported?
if (console.group) {
// attempt to call original method bubbling up any errors
try {
console.groupCollapsed("[" + self.logname + "] " + obj.constructor.name + "." + prop + "()" + " " + stackMessage);
console.log("arguments: ", [].slice.call(arguments));
value = func.apply(this, arguments);
}
// any error we find we break out of our console.group and
// provide full stack trace
catch(e) {
var count = 15;
while(count--) console.groupEnd();
console.error(e.stack);
return;
}
if (value) console.log("return: ", value);
console.groupEnd();
} else {
console.log("[" + self.logname + "] " + obj.constructor.name + "." + prop + "()" + " " + stackMessage);
value = func.apply(this, arguments);
}
return value;
} else {
return func.apply(this, arguments);
}
};
};
/**
* Extend obj with n-number of source objects
*
* @example
* var log = Logr.extend({}, {});
*
* @param {Object} obj the object extend
*/
function extend(obj) {
var source, prop;
for (var i = 1, length = arguments.length; i < length; i++) {
source = arguments[i];
for (prop in source) {
if (hasOwnProperty.call(source, prop)) {
obj[prop] = source[prop];
}
}
}
return obj;
}
return Logr;
}));