forked from qt-creator/qt-creator
Maemo: Display UTFS server stderr output.
This will help us diagnose errors.
This commit is contained in:
@@ -110,6 +110,8 @@ void MaemoDeployStep::ctor()
|
||||
SLOT(handleMountError(QString)));
|
||||
connect(m_mounter, SIGNAL(reportProgress(QString)), this,
|
||||
SLOT(handleProgressReport(QString)));
|
||||
connect(m_mounter, SIGNAL(debugOutput(QString)), this,
|
||||
SLOT(handleMountDebugOutput(QString)));
|
||||
}
|
||||
|
||||
bool MaemoDeployStep::init()
|
||||
@@ -429,6 +431,12 @@ void MaemoDeployStep::handleMountError(const QString &errorMsg)
|
||||
raiseError(errorMsg);
|
||||
}
|
||||
|
||||
void MaemoDeployStep::handleMountDebugOutput(const QString &output)
|
||||
{
|
||||
if (!m_stopped)
|
||||
writeOutput(output, ErrorOutput);
|
||||
}
|
||||
|
||||
void MaemoDeployStep::setupMount()
|
||||
{
|
||||
Q_ASSERT(m_needsInstall || !m_filesToCopy.isEmpty());
|
||||
|
||||
Reference in New Issue
Block a user