Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dschmidt/libcrashreporter-qt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeo Mrnjavac <teo@kde.org>2016-03-23 09:31:35 +0300
committerTeo Mrnjavac <teo@kde.org>2016-03-23 09:31:35 +0300
commite7a30f8a059f9800217286c820fc4d86d94bf0a1 (patch)
tree94164f220f7c50c46b2b62e44623b745b2ce4016
parent2ad2330c0934fcbc65de1a9005b5c707daff8877 (diff)
Remove debug output.
-rw-r--r--src/libcrashreporter-handler/Handler.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libcrashreporter-handler/Handler.cpp b/src/libcrashreporter-handler/Handler.cpp
index 0d721d4..ec514ad 100644
--- a/src/libcrashreporter-handler/Handler.cpp
+++ b/src/libcrashreporter-handler/Handler.cpp
@@ -303,21 +303,18 @@ Handler::setApplicationData( const QCoreApplication* app )
cappname = new char[ sappname.size() + 1 ];
strcpy( cappname, sappname.c_str() );
m_applicationName = cappname;
- qDebug() << "m_applicationName: " << m_applicationName;
char* cepath;
std::string sepath = app->applicationFilePath().toStdString();
cepath = new char[ sepath.size() + 1 ];
strcpy( cepath, sepath.c_str() );
m_executablePath = cepath;
- qDebug() << "m_executablePath: " << m_executablePath;
char* cappver;
std::string sappver = app->applicationVersion().toStdString();
cappver = new char[ sappver.size() + 1 ];
strcpy( cappver, sappver.c_str() );
m_applicationVersion = cappver;
- qDebug() << "m_applicationVersion: " << m_applicationVersion;
// To be set by the handler
m_signalNumber = -1;