Skip to content

Commit

Permalink
Drop a fairly useless warning message to debug. Refs #7103
Browse files Browse the repository at this point in the history
The package build throws this warning with the PythonAlgs directory.
  • Loading branch information
martyngigg committed May 16, 2013
1 parent 48a5ed9 commit 21665fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/Framework/Kernel/src/ConfigService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -560,13 +560,13 @@ std::string ConfigServiceImpl::makeAbsolute(const std::string & dir, const std::
{
if (required && !Poco::File(converted).exists())
{
g_log.warning() << "Required properties path \"" << converted << "\" in the \"" << key
g_log.debug() << "Required properties path \"" << converted << "\" in the \"" << key
<< "\" variable does not exist.\n";
converted = "";
}
} catch ( Poco::FileException & )
{
g_log.warning() << "Required properties path \"" << converted << "\" in the \"" << key
g_log.debug() << "Required properties path \"" << converted << "\" in the \"" << key
<< "\" variable does not exist.\n";
converted = "";
}
Expand Down

0 comments on commit 21665fc

Please sign in to comment.