When I start a notebook server, there are some log message shows in the backend(the terminal where the ipython notebook command executed). How could I get the error message in the browser?
E.g. In the backend: (I use python to call some java method)
2015-12-09 22:34:33,483 [Thread-2] ERROR SomeErrorMessage - java.io.FileNotFoundException: File does not exist: hdfs://sample/test.txt
But in the browser, it just failed silently without showing anything and return a None value.
How could I get the message above in the notebook(in browser)?
Thanks