I am consuming fenics in my library for spatial stochastic simulations (github.com/pyurdme/pyurdme). When running jobs using Ipython, I get swamped with annoying messages from FFC, such as
Calling FFC just-in-time (JIT) compiler, this may take some time.
DEBUG:FFC Reusing form from cache
Since these messages gets sent around in Ipython Cluster, they are inconvenient. Also, they gets displayed in the IPython Notebook.
How can I disable all messages from Dolfin and FFC/UFL below ERROR level? I have tried the following
dolfin.set_log_level(dolfin.ERROR)
import ffc.log
ffc.log.set_level(ffc.log.ERROR)
With no luck.