How can I disable the set_log_level(DEBUG)? I can't find it on the FEniCS book or with set_log_level? comand on ipython. I don't need the debug messages on vtk plot.
You need to set
set_log_active(False)
to turn it all off.
You can also specify the level of the log reports. See the answer to this related question
Thank you Jan!