Hide logs in html export

A notebook that I’m writing uses the gif function from Plots to create an animation, which it then saves locally, and Pluto also displays it in the notebook. I’d like to export this notebook to a html file, but the function returns the save location in the logs, as seen below.

image

This can be hidden in the notebook by pressed “hide logs” on the cell, however the logs still show up in the html export. Is there a way to hide logs in the exports as well as the notebook?

Adding the following line does the trick:

using Logging; Logging.disable_logging(Logging.Info);

find out more here about logging

1 Like