From: hristov Date: Fri, 14 Jan 2011 05:35:11 +0000 (+0000) Subject: Fix for bug #76956: Make Info msg like 'Branch switched [on|off]' debug messages X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=e06036ee9d6edb8a5ef8a1c5fc37d21cd4f5c17b;p=u%2Fmrichter%2FAliRoot.git Fix for bug #76956: Make Info msg like 'Branch switched [on|off]' debug messages --- diff --git a/STEER/AliInputEventHandler.cxx b/STEER/AliInputEventHandler.cxx index e6985433915..9a163e8e80f 100644 --- a/STEER/AliInputEventHandler.cxx +++ b/STEER/AliInputEventHandler.cxx @@ -73,7 +73,7 @@ void AliInputEventHandler::SwitchOffBranches() const { if (str.Length() == 0) continue; fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 0); - AliInfo(Form("Branch %s switched off \n", str.Data())); + AliDebug(1,Form("Branch %s switched off", str.Data())); } delete tokens; } @@ -89,7 +89,7 @@ void AliInputEventHandler::SwitchOnBranches() const { if (str.Length() == 0) continue; fTree->SetBranchStatus(Form("%s%s%s","*", str.Data(), "*"), 1); - AliInfo(Form("Branch %s switched on \n", str.Data())); + AliDebug(1,Form("Branch %s switched on", str.Data())); } delete tokens; }