Skip to content

Commit

Permalink
Remove unnecessary mention of ISIS in log message. Refs #6202
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Apr 15, 2013
1 parent d899802 commit db57f1b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions Code/Mantid/MantidPlot/src/Mantid/MantidUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ void MantidUI::executeDownloadDataFiles(const std::vector<std::string>& filenNam
}
catch(...)
{
m_appWindow->writeToLogWindow("Error when getting/downloading data file from isis server ", true);
m_appWindow->writeToLogWindow("Error when getting/downloading data file from server ", true);
return;
}
try
Expand Down Expand Up @@ -1770,7 +1770,7 @@ void MantidUI::executeDownloadDataFiles(const std::vector<std::string>& filenNam
}
catch(...)
{
m_appWindow->writeToLogWindow("Error when getting/downloading data file from isis server", true);
m_appWindow->writeToLogWindow("Error when getting/downloading data file from server", true);
return;
}
try
Expand Down Expand Up @@ -1879,9 +1879,7 @@ void MantidUI::logMessage(const Poco::Message& msg)
{
if (!appWindow()->results) return;
QString str = msg.getText().c_str();
//if (s_logEdit->document()->blockCount() > 1000) s_logEdit->document()->clear();
//Ticket #671
//to display the logwindow if there is ann error or higher log message

if (msg.getPriority() <= Poco::Message::PRIO_ERROR)
{
appWindow()->logWindow->show();
Expand Down

0 comments on commit db57f1b

Please sign in to comment.