Skip to content

Commit

Permalink
Refs #8020. Fix warning output.
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbekasov committed Feb 20, 2014
1 parent f78bdda commit cd4998d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Code/Mantid/MantidQt/CustomInterfaces/src/MuonAnalysis.cpp
Expand Up @@ -1440,8 +1440,9 @@ void MuonAnalysis::inputFileChanged(const QStringList& files)
}
catch(std::exception& e)
{
// If dead correction wasn't applied we can still continue, though should make user be aware of that
g_log.warning() << "No dead time correction applied: " << e.what();
// If dead correction wasn't applied we can still continue, though should make user be aware
// of that
g_log.warning() << "No dead time correction applied: " << e.what() << "\n";
}

Workspace_sptr loadedWorkspace = loadResult->loadedWorkspace;
Expand Down

0 comments on commit cd4998d

Please sign in to comment.