Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2103)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2104)
@@ -5,4 +5,5 @@
    * mbase/MLog.cc:
      - do not underline if eNoColors is set
+     - fixed abug in Output() (last character missing when flushed)
      
    * mbase/MLogManip.cc:
@@ -29,4 +30,5 @@
    * manalysis/MSigmabar.[h,cc]:
      - deleted the fCalcPixNum variable (not used).
+
 
 
Index: /trunk/MagicSoft/Mars/mbase/MLog.cc
===================================================================
--- /trunk/MagicSoft/Mars/mbase/MLog.cc	(revision 2103)
+++ /trunk/MagicSoft/Mars/mbase/MLog.cc	(revision 2104)
@@ -222,6 +222,6 @@
         // Check for EOL
         const Bool_t endline = fBase[len-1]=='\n';
-        // output text to screen (without trailing '\0' or '\n')
-        out << TString(fBase, len-1);
+        // output text to screen (without trailing '\n')
+        out << TString(fBase, endline ? len-1 : len);
         // reset colors if working with colors
         if (!TestBit(eNoColors))
Index: /trunk/MagicSoft/Mars/mhist/MHMatrix.cc
===================================================================
--- /trunk/MagicSoft/Mars/mhist/MHMatrix.cc	(revision 2103)
+++ /trunk/MagicSoft/Mars/mhist/MHMatrix.cc	(revision 2104)
@@ -755,5 +755,5 @@
     {
         *fLog << err << dbginf << "Renormalization not possible: ";
-        *fLog "Target Distribution has values < 0" << endl;
+        *fLog << "Target Distribution has values < 0" << endl;
         return kFALSE;
     }
