Is there an API to limit the output of a Jupyter K...
# datascience
p
Is there an API to limit the output of a Jupyter Kotlin kernel. So the equivalent to "%logLevel off" but then to be called from within the kernel?
i
There is no such switch for now, but it is simple to add. Do you need to switch off the logging from your library?
As a workaround, you may evaluate aforementioned magic as a code snippet using the API
p
Indeed the usecase is switch it of from my library. I'll also give the workaround a try, thanks!