Minuit migrad output suppression?

So, I’m doing 1000 fits with minuit using “MIGRAD” and I want to be able to supress its outputting to the command prompt (or nohup.out). Does anyone know how to give minuit this order?

Set print level to -1, eg

Double_t arglist[2]; arglist[0] = -1; minuit->ExecuteCommand("SET PRINT", arglist, 1); minuit->ExecuteCommand("MIGRAD", arglist, 0);

Rene