projects
/
metaproxy-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94e341a
)
Append rather than truncate for filter log files
author
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 24 May 2007 14:07:12 +0000
(14:07 +0000)
committer
Adam Dickmeiss
<adam@indexdata.dk>
Thu, 24 May 2007 14:07:12 +0000
(14:07 +0000)
src/filter_log.cpp
patch
|
blob
|
history
diff --git
a/src/filter_log.cpp
b/src/filter_log.cpp
index
46e993f
..
a93c7cd
100644
(file)
--- a/
src/filter_log.cpp
+++ b/
src/filter_log.cpp
@@
-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.32 2007-05-24 14:07:12 adam Exp $
Copyright (c) 2005-2007, Index Data.
This file is part of Metaproxy.
@@
-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)
{
}