Log exception when reloading notebooks

NotebookServer was not logging the exception thrown when reloading
notebooks
This commit is contained in:
Nate Sammons 2016-05-12 11:44:50 -06:00
parent b55b98c935
commit 84ddd3bfff

View file

@ -359,7 +359,7 @@ public class NotebookServer extends WebSocketServlet implements
try {
notebook.reloadAllNotes();
} catch (IOException e) {
LOG.error("Fail to reload notes from repository");
LOG.error("Fail to reload notes from repository", e);
}
}