]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fix for bug #76956: Make Info msg like 'Branch <XXX> switched [on|off]' debug messages
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Jan 2011 05:35:11 +0000 (05:35 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 14 Jan 2011 05:35:11 +0000 (05:35 +0000)
STEER/AliInputEventHandler.cxx

index e6985433915c4cfa9c73770b0a7840e4c5055dcd..9a163e8e80f6a90782d8be99f3dd7c3df5c7f7fb 100644 (file)
@@ -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;
 }