I have a script that I run in the Jupyterlab. I'm using an external library that creates logs which i can see them in the JupyterLab console. Is there a way to push logs created by that library and see directly in the Chrome console? I've tried several approaches and no success. Thanks
Asked
Active
Viewed 75 times
0
-
I am not sure if this is supported, since I don't believe it is a requirement to run jupyter notebooks using a javascript environment. Normally, you would `console.log()` messages to the browser console in javascript. But perhaps you mean something like this: https://stackoverflow.com/questions/18786912/get-output-from-the-logging-module-in-ipython-notebook – CodingTil Oct 19 '22 at 08:35
-
Thanks @CodingTil not exactly. Printing in the jupyter console is fine. The challenge is to push the logs to the Chrome console. Thx – MBu Oct 19 '22 at 09:30