summaryrefslogtreecommitdiffstats
path: root/src/Daemon
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon')
-rw-r--r--src/Daemon/CrashWatcher.cpp4
1 files changed, 0 insertions, 4 deletions
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;