Skip to content

Commit

Permalink
Refs #6315. Changing some logging/output levels.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Reuter committed Apr 25, 2013
1 parent 764d1c7 commit 0276ad7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/MDAlgorithms/src/LoadMD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ namespace Mantid
}
else
{
g_log.notice("Do not know how to process coordinate transform " + type);
g_log.information("Do not know how to process coordinate transform " + type);
}
return transform;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,12 @@
#include "MantidGeometry/MDGeometry/MDGeometryXMLParser.h"
#include "MantidGeometry/MDGeometry/MDGeometryXMLBuilder.h"


#include <boost/functional/hash.hpp>
#include <sstream>

#include "MantidVatesAPI/Clipper.h"
#include <vtkPVClipDataSet.h>

#include <QtDebug>

class ClipperAdapter : public Mantid::VATES::Clipper
{
private:
Expand Down Expand Up @@ -292,8 +289,8 @@ int vtkMDEWRebinningCutter::RequestData(vtkInformation* vtkNotUsed(request), vtk
}
catch (std::invalid_argument &e)
{
qWarning() << "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what();
vtkDebugMacro(<< "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what());
}

m_presenter->setAxisLabels(output);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
#include "MantidVatesAPI/FilteringUpdateProgressAction.h"
#include "MantidVatesAPI/MDLoadingViewAdapter.h"

#include <QtDebug>

vtkStandardNewMacro(vtkMDHWNexusReader);

using namespace Mantid::VATES;
Expand Down Expand Up @@ -147,8 +145,8 @@ int vtkMDHWNexusReader::RequestData(vtkInformation * vtkNotUsed(request), vtkInf
}
catch (std::invalid_argument &e)
{
qWarning() << "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what();
vtkDebugMacro(<< "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what());
}
m_presenter->setAxisLabels(output);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
#include "MantidVatesAPI/FilteringUpdateProgressAction.h"
#include "MantidVatesAPI/IgnoreZerosThresholdRange.h"

#include <QtDebug>

using namespace Mantid::VATES;

vtkStandardNewMacro(vtkMDHWSource);
Expand Down Expand Up @@ -138,8 +136,8 @@ int vtkMDHWSource::RequestData(vtkInformation *, vtkInformationVector **, vtkInf
}
catch (std::invalid_argument &e)
{
qWarning() << "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what();
vtkDebugMacro(<< "Workspace does not have correct information to "
<< "plot non-orthogonal axes. " << e.what());
}
m_presenter->setAxisLabels(output);

Expand Down

0 comments on commit 0276ad7

Please sign in to comment.