This is a read only copy of the old FEniCS QA forum. Please visit the new QA forum to ask questions

set_log_level(OFF) ?

0 votes

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.

asked Nov 8, 2014 by Andre Machado FEniCS User (1,040 points)

1 Answer

+1 vote
 
Best answer

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

answered Nov 8, 2014 by Jan FEniCS User (8,290 points)
selected Aug 25, 2015 by Andre Machado

Thank you Jan!

...