[LNT] r267857 - [profile] Print out a bit more info on javascript error to help debugging.

Kristof Beyls via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 28 00:27:18 PDT 2016


Author: kbeyls
Date: Thu Apr 28 02:27:17 2016
New Revision: 267857

URL: http://llvm.org/viewvc/llvm-project?rev=267857&view=rev
Log:
[profile] Print out a bit more info on javascript error to help debugging.

Modified:
    lnt/trunk/lnt/server/ui/static/lnt_profile.js

Modified: lnt/trunk/lnt/server/ui/static/lnt_profile.js
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/static/lnt_profile.js?rev=267857&r1=267856&r2=267857&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/static/lnt_profile.js (original)
+++ lnt/trunk/lnt/server/ui/static/lnt_profile.js Thu Apr 28 02:27:17 2016
@@ -480,7 +480,7 @@ Profile.prototype = {
                 '<center><i>The javascript on this page to<br> ' +
                 'analyze and visualize the profile has crashed:<br>'+
                 +err.message+'</i></center>'+
-                err.stack);
+                err.stack + '</br>' + err);
         }
     },
 




More information about the llvm-commits mailing list