From 6544f598f554e6801c63920e3c6cbabf0f091c50 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 24 Sep 2012 21:43:24 +0300 Subject: Show internal error reponses for browser details request (#8243) --- WebContent/VAADIN/vaadinBootstrap.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'WebContent/VAADIN') diff --git a/WebContent/VAADIN/vaadinBootstrap.js b/WebContent/VAADIN/vaadinBootstrap.js index c8a2c03545..96c1b0e014 100644 --- a/WebContent/VAADIN/vaadinBootstrap.js +++ b/WebContent/VAADIN/vaadinBootstrap.js @@ -134,6 +134,8 @@ // Try bootstrapping again, this time without fetching missing info bootstrapApp(false); + } else if (r.status == 500) { + document.write(r.responseText); } else { log('Error', r.statusText); } -- cgit v1.2.3