summaryrefslogtreecommitdiffstats
path: root/src/Daemon/CrashWatcher.cpp
diff options
context:
space:
mode:
authorDaniel Novotny <dnovotny@dhcp-0-118.brq.redhat.com>2009-08-25 15:40:26 +0200
committerDaniel Novotny <dnovotny@dhcp-0-118.brq.redhat.com>2009-08-25 15:40:26 +0200
commitf495fd571cc063c2e0980e14b0cac604a5c71b32 (patch)
treea7c2ba4a1fce039b5333258ffd72f49d3eeae6a3 /src/Daemon/CrashWatcher.cpp
parente4185013d1309b80633d17b84837913ac8705438 (diff)
parentfacd7083bc1c5f097b7d6795780670644ccfbb1f (diff)
downloadabrt-f495fd571cc063c2e0980e14b0cac604a5c71b32.tar.gz
abrt-f495fd571cc063c2e0980e14b0cac604a5c71b32.tar.xz
abrt-f495fd571cc063c2e0980e14b0cac604a5c71b32.zip
Merge branch 'master' of git://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/Daemon/CrashWatcher.cpp')
-rw-r--r--src/Daemon/CrashWatcher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Daemon/CrashWatcher.cpp b/src/Daemon/CrashWatcher.cpp
index 5a6463a..f0593c1 100644
--- a/src/Daemon/CrashWatcher.cpp
+++ b/src/Daemon/CrashWatcher.cpp
@@ -30,14 +30,14 @@ void CCrashWatcher::Status(const std::string& pMessage, const std::string& pDest
g_pCommLayer->Update(pDest, pMessage);
}
-void CCrashWatcher::Warning(const std::string& pMessage, const std::string& pDest)
+void CCrashWatcher::Warning(const std::string& pMessage)
{
std::cerr << "Warning: " + pMessage << std::endl;
if (g_pCommLayer != NULL)
- g_pCommLayer->Warning(pDest, pMessage);
+ g_pCommLayer->Warning(pMessage);
}
-void CCrashWatcher::Debug(const std::string& pMessage, const std::string& pDest)
+void CCrashWatcher::Debug(const std::string& pMessage)
{
//some logic to add logging levels?
std::cout << "Debug: " + pMessage << std::endl;