Add bugsnag TODO in ErrorUtils#respondInternalError

This commit is contained in:
Colin McDonald 2016-06-21 17:07:23 -04:00
parent 7b594d695b
commit 217683407e

View File

@ -21,6 +21,7 @@ public class ErrorUtils {
}
public static void respondInternalError(RoutingContext ctx, Throwable error) {
// TODO: BUGSNAG
error.printStackTrace();
respondGeneric(ctx, 500, "Internal error: " + error.getClass().getSimpleName());
}