Require libyazpp3-dev 1.1.0
[metaproxy-moved-to-github.git] / src / filter_log.cpp
index 46e993f..74e86db 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_log.cpp,v 1.31 2007-05-22 19:45:58 adam Exp $
+/* $Id: filter_log.cpp,v 1.33 2008-02-20 15:07:52 adam Exp $
    Copyright (c) 2005-2007, Index Data.
 
 This file is part of Metaproxy.
@@ -106,7 +106,7 @@ yf::Log::~Log()
 {  // must have a destructor because of boost::scoped_ptr
 }
 
-void yf::Log::configure(const xmlNode *xmlnode)
+void yf::Log::configure(const xmlNode *xmlnode, bool test_only)
 {
     m_p->configure(xmlnode);
 }
@@ -445,7 +445,7 @@ void yf::Log::Impl::option_write(const char *name, void *handle)
 
 
 yf::Log::Impl::LFile::LFile(std::string fname) : 
-    m_fname(fname), fout(fname.c_str()), out(fout)
+    m_fname(fname), fout(fname.c_str(),std::ios_base::app), out(fout)
 {
 }