Hi,
When computing with dolfin in ipython notebook, I get the following warning: "DEBUG:FFC:Reusing form from cache." How can I suppress it? Adding the command %%capture does not help.
Thank you in advance for any suggestions Vladimir
Hi, try
import logging logging.getLogger("FFC").setLevel(logging.ERROR)