Skip to content

Commit

Permalink
Refs #6315. Trying to make failure messages more helpful.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed May 2, 2013
1 parent a1e9546 commit e02eeb3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Code/Mantid/Framework/Kernel/src/ConfigService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1756,13 +1756,16 @@ bool ConfigServiceImpl::quickParaViewCheck() const
}
else
{
this->g_log.notice("ParaView is not available");
std::stringstream messageStream;
messageStream << "ParaView version query failed with code: " << rc;
this->g_log.notice(messageStream.str());
this->g_log.notice("ParaView is not available, query failed.");
}
}
catch(Poco::SystemException &e)
{
g_log.debug(e.what());
this->g_log.notice("ParaView is not available");
this->g_log.notice("ParaView is not available, Poco::SystemException");
}
return isAvailable;
}
Expand Down

0 comments on commit e02eeb3

Please sign in to comment.