dolfin team mailing list archive
-
dolfin team
-
Mailing list archive
-
Message #06005
Re: progress bar suppression
On Thu, Jan 17, 2008 at 09:26:10AM +0100, Kristian Oelgaard wrote:
> Quoting Gideon Simpson <grs2103@xxxxxxxxxxxx>:
>
> > how can i suppress the progress bars for the application of boundary
> > conditions?
>
> The following works:
>
> assembler.assemble(A, a);
> assembler.assemble(b, L);
>
> set("output destination", "silent");
> bc.apply(A, b, x, a);
> set("output destination", "terminal");
>
> Kristian
You can also use
set("debug level", n);
for a low value of n (like -1).
--
Anders
References