From 79833fc32cf10ef409b2be63fa58b4f8dfbe1e06 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Fri, 20 Feb 2009 18:46:28 +0100 Subject: Removed some debug messages. --- src/Daemon/CrashWatcher.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/Daemon') diff --git a/src/Daemon/CrashWatcher.cpp b/src/Daemon/CrashWatcher.cpp index 4f4c413..d0b6923 100644 --- a/src/Daemon/CrashWatcher.cpp +++ b/src/Daemon/CrashWatcher.cpp @@ -131,12 +131,8 @@ dbus_vector_map_crash_infos_t CCrashWatcher::GetCrashInfosMap(const std::string vector_crash_infos_t crash_info; std::cerr << pUID << std::endl; unsigned long unix_uid = m_pConn->sender_unix_uid(pUID.c_str()); - std::cerr << "Run by user with uid: " << unix_uid << std::endl; crash_info = m_pMW->GetCrashInfos(to_string(unix_uid)); for (vector_crash_infos_t::iterator it = crash_info.begin(); it!=crash_info.end(); ++it) { - /* push the map with DB row into retval */ - map_crash_t tmp = it->GetMap(); - std::cout << "Time:" << tmp["Time"] << std::endl; retval.push_back(it->GetMap()); } return retval; -- cgit