mirror of
https://github.com/Hopiu/postal.js.git
synced 2026-03-16 22:20:23 +00:00
Updating build artifacts
This commit is contained in:
parent
efb1d5cb0c
commit
ac05df0f42
6 changed files with 4 additions and 4 deletions
|
|
@ -8,7 +8,7 @@ postal.addWireTap(function(data, envelope) {
|
|||
}
|
||||
catch(exception) {
|
||||
try {
|
||||
all.data = exception;
|
||||
all.data = "ERROR: " + exception.message;
|
||||
console.log(JSON.stringify(all));
|
||||
}
|
||||
catch(ex) {
|
||||
|
|
|
|||
Binary file not shown.
2
lib/browser/postal.diagnostics.min.js
vendored
2
lib/browser/postal.diagnostics.min.js
vendored
|
|
@ -1 +1 @@
|
|||
postal.addWireTap(function(a,b){var c=_.extend(b,{data:a});if(!JSON)throw"This browser or environment does not provide JSON support";try{console.log(JSON.stringify(c))}catch(d){try{c.data=d,console.log(JSON.stringify(c))}catch(e){console.log("Unable to parse data to JSON: "+d)}}})
|
||||
postal.addWireTap(function(a,b){var c=_.extend(b,{data:a});if(!JSON)throw"This browser or environment does not provide JSON support";try{console.log(JSON.stringify(c))}catch(d){try{c.data="ERROR: "+d.message,console.log(JSON.stringify(c))}catch(e){console.log("Unable to parse data to JSON: "+d)}}})
|
||||
Binary file not shown.
|
|
@ -9,7 +9,7 @@ postal.addWireTap(function(data, envelope) {
|
|||
}
|
||||
catch(exception) {
|
||||
try {
|
||||
all.data = exception;
|
||||
all.data = "ERROR: " + exception.message;
|
||||
console.log(JSON.stringify(all));
|
||||
}
|
||||
catch(ex) {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ postal.addWireTap(function(data, envelope) {
|
|||
}
|
||||
catch(exception) {
|
||||
try {
|
||||
all.data = exception;
|
||||
all.data = "ERROR: " + exception.message;
|
||||
console.log(JSON.stringify(all));
|
||||
}
|
||||
catch(ex) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue