summaryrefslogtreecommitdiff
path: root/src/lib/log.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-24 22:47:29 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-24 22:47:29 +0100
commit446427a28a055115d78d5ec513b9229571fca511 (patch)
treee682b46e64b832cc63beed1da2c932641f34b0f7 /src/lib/log.cc
parent0a420c3bb0e256ac5dfe3e7b0275b0d9e535fe0f (diff)
Rely on Config for log settings, not the command line.
Diffstat (limited to 'src/lib/log.cc')
-rw-r--r--src/lib/log.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc
index a2f420ce1..52dff2982 100644
--- a/src/lib/log.cc
+++ b/src/lib/log.cc
@@ -23,7 +23,6 @@
#include <time.h>
#include <cstdio>
-#include <boost/algorithm/string.hpp>
#include "log.h"
#include "cross.h"
#include "config.h"
@@ -31,8 +30,6 @@
#include "i18n.h"
using namespace std;
-using boost::algorithm::is_any_of;
-using boost::algorithm::split;
int const Log::TYPE_GENERAL = 0x1;
int const Log::TYPE_WARNING = 0x2;
@@ -105,30 +102,6 @@ Log::set_types (int t)
_types = t;
}
-/** @param A comma-separate list of debug types to enable */
-void
-Log::set_types (string t)
-{
- boost::mutex::scoped_lock lm (_mutex);
-
- vector<string> types;
- split (types, t, is_any_of (","));
-
- _types = 0;
-
- for (vector<string>::const_iterator i = types.begin(); i != types.end(); ++i) {
- if (*i == N_("general")) {
- _types |= TYPE_GENERAL;
- } else if (*i == N_("warning")) {
- _types |= TYPE_WARNING;
- } else if (*i == N_("error")) {
- _types |= TYPE_ERROR;
- } else if (*i == N_("timing")) {
- _types |= TYPE_TIMING;
- }
- }
-}
-
/** @param file Filename to write log to */
FileLog::FileLog (boost::filesystem::path file)
: _file (file)