Skip to content

Commit

Permalink
Print full exception message in case of failing plug-in installation.
Browse files Browse the repository at this point in the history
  • Loading branch information
saschazelzer committed Nov 24, 2012
1 parent dcbc87a commit 298de77
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -220,7 +220,10 @@ void InternalPlatform::Initialize(int& argc, char** argv, Poco::Util::AbstractCo
}
catch (const ctkPluginException& e)
{
BERRY_ERROR << "Failed to install: " << pluginUrl.toString().toStdString() << ",\n" << e.what();
QString errorMsg;
QDebug dbg(&errorMsg);
dbg << e.printStackTrace();
BERRY_ERROR << qPrintable(errorMsg);
}
}
}
Expand Down

0 comments on commit 298de77

Please sign in to comment.