Error message not shown when using a callback!
See original GitHub issueUsing JupyterLab 1.1.4
When using a simple code snippet like this
from IPython.display import display
from ipywidgets import widgets
button = widgets.Button(description="Click Me!")
display(button)
def on_button_clicked(b):
a=1/0
# do something important
button.on_click(on_button_clicked)
and I run the code and click on the button, I do not get any error message! There is clearly an error, but I do not see it in any output!
Will this bug fixed in a future release?
Issue Analytics
- State:
- Created 4 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
No results found
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
And we are very grateful for @mbektasbbg for implementing the log console in JupyterLab 1.2 (and his employer Bloomberg for prioritizing him to work on it) so that we could move back to showing errors and output by default!
Enjoy!