fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
better placement of the comment tutorial
[fnpeditor.git]
/
src
/
fnpjs
/
logging
/
handlers.js
diff --git
a/src/fnpjs/logging/handlers.js
b/src/fnpjs/logging/handlers.js
index
5b14be6
..
a85645a
100644
(file)
--- a/
src/fnpjs/logging/handlers.js
+++ b/
src/fnpjs/logging/handlers.js
@@
-7,13
+7,18
@@
return {
console: function(record) {
/* global console */
var level = record.level,
console: function(record) {
/* global console */
var level = record.level,
- method;
+ method
, msg
;
if(console) {
if(level === 'warning') {
level = 'warn';
}
method = (typeof console[level] === 'function') ? level : 'log';
if(console) {
if(level === 'warning') {
level = 'warn';
}
method = (typeof console[level] === 'function') ? level : 'log';
- console[method](record.message);
+ if(record.data && record.data.exception && record.data.exception.stack) {
+ msg = record.data.exception.stack;
+ } else {
+ msg = record.message;
+ }
+ console[method](msg);
}
},
raven: function(record) {
}
},
raven: function(record) {