Skip to content
Snippets Groups Projects
Commit 19a52f4a authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Move logging down to debug

parent 2d883fb1
No related branches found
No related tags found
No related merge requests found
......@@ -105,11 +105,12 @@ class AlignAndFocusPowderFromFiles(DataProcessorAlgorithm):
return args
def __updateAlignAndFocusArgs(self, wkspname):
self.log().warning('__updateAlignAndFocusArgs(%s)!!!!!!!' % wkspname)
self.log().debug('__updateAlignAndFocusArgs(%s)' % wkspname)
# if the files are missing, there is nothing to do
if (CAL_FILE not in self.kwargs) and (GROUP_FILE not in self.kwargs):
self.log().warning('--> Nothing to do')
self.log().warning('--> Updating')
self.log().debug('--> Nothing to do')
return
self.log().debug('--> Updating')
# delete the files from the list of kwargs
if CAL_FILE in self.kwargs:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment