BugLogHQ provides a unified view of error messages sent from any number of applications and servers, allowing the developer to search, graph, forward, and explore the bug reports submitted by the applications.
try {
...
// code that never fails
...
} catch(any e) {
var bl = new bugLogService("...listener...");
bl.notifyService(e.message, e);
}
component {
...
public function onError(Exception, EventName) {
var bl = new bugLogService("...listener...");
bl.notifyService(exception.message, exception);
// continue error handling...
}
}
curl "http://your_server/bugLog/listeners/bugLogListenerREST.cfm" \ -d message="errors happen!" \ -d applicationCode="someApp" \ -d severityCode="ERROR"
BugLogHQ can also be called from JavaScript, PHP and Python apps!
© Copyright 2013 BugLogHQ.com