Updating build artifacts

This commit is contained in:
Jim Cowart 2012-01-15 21:57:15 -05:00
parent efb1d5cb0c
commit ac05df0f42
6 changed files with 4 additions and 4 deletions

View file

@ -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) {

View file

@ -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.

View file

@ -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) {

View file

@ -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) {