Skip to content

Commit

Permalink
Refs #9041 Added debug log for processing
Browse files Browse the repository at this point in the history
The log is now written to at debug level when it starts processing a new row
  • Loading branch information
keithnbrown committed Feb 27, 2014
1 parent 9f9dac2 commit f0f6fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/scripts/Interface/ui/reflectometer/refl_gui.py
Expand Up @@ -346,6 +346,7 @@ def process(self):
theta = [0, 0, 0]
if (self.tableMain.item(row, 0).text() != ''):
self.statusMain.showMessage("Processing row: " + str(row + 1))
logger.debug("Processing row: " + str(row + 1))
for i in range(3):
r = str(self.tableMain.item(row, i * 5).text())
if (r != ''):
Expand All @@ -361,7 +362,6 @@ def process(self):
loadedRun = None
if load_live_runs.is_live_run(runno[0]):
if not self.accMethod:
#reply = QtGui.QMessageBox.question(self.tableMain, 'Accumulation Method?',"The Data to be processed required that a Live Data service be started. What accumulation method would you like it to use?", QtGui.QMessageBox.Yes, QtGui.QMessageBox.No)
self.accMethod = self.getAccMethod()
loadedRun = load_live_runs.get_live_data(config['default.instrument'], Accumulation = self.accMethod)
else:
Expand Down

0 comments on commit f0f6fab

Please sign in to comment.