summaryrefslogtreecommitdiffstats
path: root/lib/MiddleWare/MiddleWare.cpp
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-02-26 16:27:55 +0100
committerZdenek Prikryl <zprikryl@redhat.com>2009-02-26 16:27:55 +0100
commitdb760442ecdbf776648fbd19aa32083722e5b10f (patch)
tree9f579f11b5af014ea833dffc26534f85a19a7f4c /lib/MiddleWare/MiddleWare.cpp
parent60d9b1f8cc6189e7d3473166aac29bbab2dd6b3e (diff)
downloadabrt-db760442ecdbf776648fbd19aa32083722e5b10f.tar.gz
abrt-db760442ecdbf776648fbd19aa32083722e5b10f.tar.xz
abrt-db760442ecdbf776648fbd19aa32083722e5b10f.zip
removed debug stuff
Diffstat (limited to 'lib/MiddleWare/MiddleWare.cpp')
-rw-r--r--lib/MiddleWare/MiddleWare.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/MiddleWare/MiddleWare.cpp b/lib/MiddleWare/MiddleWare.cpp
index d60e645..161b1f8 100644
--- a/lib/MiddleWare/MiddleWare.cpp
+++ b/lib/MiddleWare/MiddleWare.cpp
@@ -183,13 +183,10 @@ void CMiddleWare::CreateReportApplication(const std::string& pApplication,
return application->CreateReport(pDebugDumpDir);
}
-#include <iostream>
-#include <stdio.h>
void CMiddleWare::CreateReport(const std::string& pUUID,
const std::string& pUID,
crash_report_t& pCrashReport)
{
- std::cout << "CMiddleWare::CreateReport() s" << std::endl;
CDatabase* database = m_pPluginManager->GetDatabase(m_sDatabase);
database_row_t row;
database->Connect();
@@ -219,27 +216,14 @@ void CMiddleWare::CreateReport(const std::string& pUUID,
}
dd.SaveText(FILENAME_UUID, UUID);
dd.Close();
- fflush(stdout);
- fflush(stderr);
- std::cerr << "CMiddleWare::CreateReport() e1" << std::endl;
- fflush(stdout);
- fflush(stderr);
DebugDump2Report(row.m_sDebugDumpDir, pCrashReport);
- fflush(stdout);
- fflush(stderr);
- std::cerr << "CMiddleWare::CreateReport() e2" << std::endl;
pCrashReport.m_sMWID = appLan + ";" + pUID + ";" + pUUID ;
- fflush(stdout);
- fflush(stderr);
-
- std::cerr << "CMiddleWare::CreateReport() e3" << std::endl;
}
void CMiddleWare::Report(const crash_report_t& pCrashReport)
{
- std::cout << "CMiddleWare::Report() s" << std::endl;
std::string::size_type pos1 = 0;
std::string::size_type pos2 = pCrashReport.m_sMWID.find(";", pos1);
std::string lanAppPlugin = pCrashReport.m_sMWID.substr(pos1, pos2);
@@ -265,7 +249,6 @@ void CMiddleWare::Report(const crash_report_t& pCrashReport)
reporter->Report(pCrashReport);
}
}
- std::cout << "CMiddleWare::Report() e" << std::endl;
}
void CMiddleWare::DeleteDebugDump(const std::string& pUUID,