jupyter / dashboards_server

[RETIRED] Server that runs and renders Jupyter notebooks as interactive dashboards
Other
181 stars 48 forks source link

Where are Python error tracebacks shown? #315

Closed jluttine closed 7 years ago

jluttine commented 7 years ago

When opening a dashboard its execution sometimes stops with a red error exclamation mark on the top right corner. It says that there is more information about the error in the console. However, I can't see anything relevant there, nothing about any errors. So where can I find these error messages? I find it very difficult to debug dashboards without this information.

jluttine commented 7 years ago

I guess typically the error at least in my case is a Python error. Where can I find the normal traceback for the error?

parente commented 7 years ago

If there is a Python traceback, it should display in the JavaScript console in the browser. If it's not appearing there, then the failure is occurring before any of the Python execution most likely.

jluttine commented 7 years ago

Thanks, that's perfect! Is this documented somewhere? I just hadn't noticed any info about this. Anyway, thanks a lot! :+1:

jluttine commented 7 years ago

Or perhaps the error message in the dashboard could tell to look more info at "the JavaScript console of the browser" instead of "console" which lead me to look at the terminal which was running the dashboard server..