summaryrefslogtreecommitdiff
path: root/src/client-test-app.cpp
diff options
context:
space:
mode:
authorPatrick Ohly <patrick.ohly@intel.com>2013-04-08 22:43:07 +0200
committerPatrick Ohly <patrick.ohly@intel.com>2013-05-06 16:28:13 +0200
commit2f6f880910f36703b96995270dac5a6d2f8e6e56 (patch)
treef577be7a36058a652074a24b53348d9cef59e3c3 /src/client-test-app.cpp
parentff2c4584b2874695405eb8e7b1565d3b7fe372fe (diff)
Logging: merge Logger and LoggerBase
Having two separate classes had little (no?!) benefit and just caused confusion.
Diffstat (limited to 'src/client-test-app.cpp')
-rw-r--r--src/client-test-app.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client-test-app.cpp b/src/client-test-app.cpp
index 96cf2f3f..f2607bbc 100644
--- a/src/client-test-app.cpp
+++ b/src/client-test-app.cpp
@@ -208,7 +208,7 @@ public:
}
}
// get configuration and set obligatory fields
- LoggerBase::instance().setLevel(Logger::DEBUG);
+ Logger::instance().setLevel(Logger::DEBUG);
std::string root = std::string("evolution/") + server + "_" + m_clientID;
boost::shared_ptr<SyncConfig> config(new SyncConfig(string(server) + "_" + m_clientID));
boost::shared_ptr<SyncConfig> from = boost::shared_ptr<SyncConfig> ();