Skip to content

Commit b5cf496

Browse files
committed
Fix to log previously-swallowed error message
1 parent 96b0c14 commit b5cf496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-web/src/main/webapp/list.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ Click <a href="<%= rawPath %>">download <%= basename %></a><%
394394
}
395395
}
396396
} catch (IOException e) {
397-
error = e.getMessage();
397+
LOGGER.log(Level.SEVERE, "Failed xref on-the-fly", e);
398398
} finally {
399399
if (r != null) {
400400
IOUtils.close(r);

0 commit comments

Comments
 (0)