SaveAs output

Is there any way to suppress the text output of tpad->SaveAs (Info in canvas has been written …)?
I am writing a cgi script and having SaveAs write to stdout is screwing things up.

Thanks

#include "TError.h" gErrorIgnoreLevel = kWarning; //default is kInfo
possible levels are

const Int_t kUnset = -1; const Int_t kPrint = 0; const Int_t kInfo = 1000; const Int_t kWarning = 2000; const Int_t kError = 3000; const Int_t kBreak = 4000; const Int_t kSysError = 5000; const Int_t kFatal = 6000;

Rene