Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 3188)
+++ trunk/MagicSoft/Mars/Changelog	(revision 3189)
@@ -74,4 +74,7 @@
    * mcalib/MHCalibrationPixel.cc:
      - after deletion of instances in Clear() initialize pointer to NULL
+
+   * mcalib/MCalibrationCalc.cc, mcalib/MHCalibrationBlindPixel.cc:
+     - fixed usage of logging stream output levels
 
 
Index: trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc	(revision 3188)
+++ trunk/MagicSoft/Mars/mcalib/MCalibrationCalc.cc	(revision 3189)
@@ -682,14 +682,12 @@
 
   if (TESTBIT(fFlags,kUseBlindPixelFit) && fCalibrations->IsBlindPixelMethodValid())
-    {
+  {
       if (!fCalibrations->CalcFluxInsidePlexiglass())
-        {
-          *fLog << err 
-                << "Could not calculate the number of photons from the blind pixel " << endl;
-          *fLog << err 
-                << "You can try to calibrate using the MCalibrationCalc::SkipBlindPixelFit()" << endl;
+      {
+          *fLog << warn << "Could not calculate the number of photons from the blind pixel " << endl;
+          *fLog << "You can try to calibrate using the MCalibrationCalc::SkipBlindPixelFit()" << endl;
         fCalibrations->SetBlindPixelMethodValid(kFALSE);          
-        }
-    }
+      }
+  }
   else
     *fLog << inf << GetDescriptor() << ": Skipping Blind Pixel Calibration! " << endl;
@@ -697,14 +695,13 @@
 
   if (fCalibrations->IsPINDiodeMethodValid())
-    {
+  {
       if (!fCalibrations->CalcFluxOutsidePlexiglass())
-        {
-          *fLog << err 
-                << "Could not calculate the number of photons from the PIN Diode " << endl;
+      {
+          *fLog << warn << "Could not calculate the number of photons from the PIN Diode " << endl;
           fCalibrations->SetPINDiodeMethodValid(kFALSE);
-        }
-    }
+      }
+  }
   else
-    *fLog << inf << GetDescriptor() << ": Skipping PIN Diode Calibration! " << endl;
+      *fLog << inf << GetDescriptor() << ": Skipping PIN Diode Calibration! " << endl;
 
   fCalibrations->SetReadyToSave();
@@ -734,11 +731,11 @@
 
   if (sat)
-    {
+  {
       *fLog << err << "HI Gain Saturation occurred in the blind pixel! " 
             << " Do not know yet how to treat this ... aborting " << endl;
-      *fLog << err << "If you need absolutely any other kind of calibration, " 
+      *fLog << "If you need absolutely any other kind of calibration, "
             << " use SkipBlindPixelFit() " << endl;
       return kFALSE;
-    }
+  }
 
   signal = (Float_t)sum;
Index: trunk/MagicSoft/Mars/mcalib/MHCalibrationBlindPixel.cc
===================================================================
--- trunk/MagicSoft/Mars/mcalib/MHCalibrationBlindPixel.cc	(revision 3188)
+++ trunk/MagicSoft/Mars/mcalib/MHCalibrationBlindPixel.cc	(revision 3189)
@@ -687,6 +687,6 @@
 {
   
-  *fLog << err << "min: " << min << endl;
-  *fLog << err << "max: " << max << endl;  
+  *fLog << inf << "min: " << min << endl;
+  *fLog << "max: " << max << endl;
 
   //
@@ -743,6 +743,6 @@
   const Double_t electronicAmp_limit  = fgBlindPixelElectronicAmpError;
 
-  *fLog << err << "pedestal: " << fMeanPedestal << endl;
-  *fLog << err << "sigma: "    << fSigmaPedestal << endl;  
+  *fLog << inf << "pedestal: " << fMeanPedestal << endl;
+  *fLog << "sigma: "    << fSigmaPedestal << endl;
 
   //
@@ -923,7 +923,7 @@
 
   *fLog << inf << "Results of the Blind Pixel Fit: " << endl;
-  *fLog << inf << "Chisquare: " << fChisquare << endl;
-  *fLog << inf << "DoF: " << fNdf << endl;
-  *fLog << inf << "Probability: " << fProb << endl;
+  *fLog << "Chisquare: " << fChisquare << endl;
+  *fLog << "DoF: " << fNdf << endl;
+  *fLog << "Probability: " << fProb << endl;
 
   //
@@ -1001,6 +1001,6 @@
 
   *fLog << inf << "Results of the Times Fit: " << endl;
-  *fLog << inf << "Chisquare: "   << fTimeGausFit->GetChisquare() << endl;
-  *fLog << inf << "Ndf: "         << fTimeGausFit->GetNDF() << endl;
+  *fLog << "Chisquare: "   << fTimeGausFit->GetChisquare() << endl;
+  *fLog << "Ndf: "         << fTimeGausFit->GetNDF() << endl;
 
   return kTRUE;
