summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/errors.h
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@digia.com>2013-02-21 13:06:41 +0100
committerTim Jenssen <tim.jenssen@digia.com>2013-02-21 13:34:44 +0100
commitb9e9fd5d4c078a6dffe80bbdd948103d30b56287 (patch)
tree6ec0115412559aa08949e1b201d434c53b5a582f /src/libs/installer/errors.h
parentf2f41399eac90bbdbaac3c122a2f7fd413f68f1b (diff)
no warning output if exception error is created
handling that exception and showing a warning belongs to the higher level of the code. Change-Id: If529cfc5a010fa7043053ca97c33dfb554c519de Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'src/libs/installer/errors.h')
-rw-r--r--src/libs/installer/errors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/errors.h b/src/libs/installer/errors.h
index b53b112d1..7f5cc9071 100644
--- a/src/libs/installer/errors.h
+++ b/src/libs/installer/errors.h
@@ -54,7 +54,7 @@ class Error : public std::runtime_error
public:
explicit Error(const QString &message)
: std::runtime_error(message.toStdString())
- , m_message (message) { qWarning() << "Error-Exception:" << message; }
+ , m_message (message) { qDebug() << "create Error-Exception:" << message; }
virtual ~Error() throw() {}
QString message() const { return m_message; }