Skip to content

Commit

Permalink
Adding debug lines to cell tooltip for debugging purposes,
Browse files Browse the repository at this point in the history
  • Loading branch information
justingeeslin committed Sep 19, 2020
1 parent 2fdca0f commit b25e995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/edu/cmu/cs/hcii/cogtool/ResultDisplayPolicy.java
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ else if (demo.isObsolete()) {

if (resultState == APredictionResult.COMPUTE_FAILED) {
// Has a result for this algo, but it failed
return "COMPUTE FAILED" /* "##" */ + demoState;
return "COMPUTE FAILED" + "\n" + demoState + "\n" + r.getErrorLines();
}

if (resultState == APredictionResult.COMPUTATION_IN_PROGRESS) {
Expand Down

0 comments on commit b25e995

Please sign in to comment.