mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Log exception when reloading notebooks
NotebookServer was not logging the exception thrown when reloading notebooks
This commit is contained in:
parent
b55b98c935
commit
84ddd3bfff
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue