Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
a4228c87
Commit
a4228c87
authored
Oct 03, 2018
by
Samuel Jones
Browse files
Re #23518 Turn off logging on algorithm calls
parent
0afb8979
Changes
2
Hide whitespace changes
Inline
Side-by-side
qt/widgets/instrumentview/src/InstrumentActor.cpp
View file @
a4228c87
...
...
@@ -758,6 +758,7 @@ Mantid::API::MatrixWorkspace_sptr InstrumentActor::extractCurrentMask() const {
-
1
);
alg
->
setPropertyValue
(
"InputWorkspace"
,
getWorkspace
()
->
getName
());
alg
->
setPropertyValue
(
"OutputWorkspace"
,
maskName
);
alg
->
setLogging
(
false
);
alg
->
execute
();
Mantid
::
API
::
MatrixWorkspace_sptr
maskWorkspace
=
...
...
qt/widgets/instrumentview/src/InstrumentWidgetMaskTab.cpp
View file @
a4228c87
...
...
@@ -1365,6 +1365,7 @@ bool InstrumentWidgetMaskTab::saveMaskViewToProject(
alg
->
setProperty
(
"InputWorkspace"
,
boost
::
dynamic_pointer_cast
<
Workspace
>
(
outputWS
));
alg
->
setPropertyValue
(
"OutputFile"
,
fileName
);
alg
->
setLogging
(
false
);
alg
->
execute
();
}
catch
(...)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment