]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Solved little pointer bug that prevented logger classes to be used in standalone...
authorloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 Jul 2002 11:13:43 +0000 (11:13 +0000)
committerloizides <loizides@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 3 Jul 2002 11:13:43 +0000 (11:13 +0000)
HLT/src/AliL3Logger.cxx

index a26003e2959d8aba16a23fbcb8d26e7c93cc3ef7..f8c261d55c1dbd116f023f0c55f1d6aec86e8a5d 100644 (file)
@@ -1,3 +1,9 @@
+// $Id$
+
+// Author: Anders Vestbo <mailto:vestbo@fi.uib.no>
+// changes done by Constantin Loizides <mailto:loizides@ikf.physik.uni-frankfurt.de>
+
+
 #include "AliL3Logging.h"
 #include "AliL3Logger.h"
 #include <fstream.h>
@@ -15,7 +21,8 @@ int AliL3Logger::kFatal = AliL3Log::kFatal;
 
 AliL3Logger::AliL3Logger(){
   gLogLevel=AliL3Log::kAll;
-  dn = so = se = sm =0; 
+  dn = so = se = sm =0;
+  of = 0;
 }
 AliL3Logger::~AliL3Logger(){
   if(dn) {gLog.DelServer(dn);delete dn;}
@@ -44,10 +51,9 @@ void AliL3Logger::UseStderr(){
 
 void AliL3Logger::UseStream(char *name){
   if(sm) return;
-//  static ofstream of;
   if(of) of->close();
   delete of;
-  of =0;
+  of = 0;
   of = new ofstream();
   of->open(name);
   sm = new  AliL3StreamLogServer(*of);
@@ -90,3 +96,5 @@ void AliL3Logger::NotUseStderr(){;}
 void AliL3Logger::NotUseStream(){;}
 #endif
 
+
+