syncevolution/src/syncevo/LogStdout.cpp
Patrick Ohly c272727dc1 local sync: added target context to [INFO/DEBUG/...] prefix
Source names already contained the context in local sync, both in
parent and child process. But normal messages often did not
distinguish between parent and child, unless the message itself
explicitly remembered to include that information.

Now the child process puts its context into the [] prefix, like this:
[INFO @foobar] xyz...

For some messages this duplicates information, but better too often
than not often enough.
2010-12-10 13:16:31 +01:00

92 lines
2.8 KiB
C++

/*
* Copyright (C) 2009 Patrick Ohly <patrick.ohly@gmx.de>
* Copyright (C) 2009 Intel Corporation
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) version 3.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include <syncevo/LogStdout.h>
#include <string.h>
#include <errno.h>
#include <syncevo/declarations.h>
SE_BEGIN_CXX
LoggerStdout::LoggerStdout(FILE *file) :
m_file(file),
m_closeFile(false)
{}
LoggerStdout::LoggerStdout(const std::string &filename) :
m_file(fopen(filename.c_str(), "w")),
m_closeFile(true)
{
if (!m_file) {
throw std::string(filename + ": " + strerror(errno));
}
}
LoggerStdout::~LoggerStdout()
{
if (m_closeFile) {
fclose(m_file);
}
}
void LoggerStdout::messagev(FILE *file,
Level msglevel,
Level filelevel,
const char *prefix,
const char *filename,
int line,
const char *function,
const char *format,
va_list args)
{
if (file &&
msglevel <= filelevel) {
// TODO: print time
if(msglevel != SHOW) {
// in case of 'SHOW' level, don't print level and prefix information
fprintf(file, "[%s%s%s] %s%s", levelToStr(msglevel),
m_processName.empty() ? "" : " ",
m_processName.c_str(),
prefix ? prefix : "",
prefix ? ": " : "");
}
// TODO: print debugging information, perhaps only in log file
vfprintf(file, format, args);
// TODO: add newline only when needed, add prefix to all lines
fprintf(file, "\n");
fflush(file);
}
}
void LoggerStdout::messagev(Level level,
const char *prefix,
const char *file,
int line,
const char *function,
const char *format,
va_list args)
{
messagev(m_file, level, getLevel(),
prefix, file, line, function,
format, args);
}
SE_END_CXX