Skip to content

Commit

Permalink
[processing] fix GRASS commands logging
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Apr 30, 2017
1 parent d71a563 commit 3f66914
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass7/Grass7Algorithm.py
Expand Up @@ -299,7 +299,7 @@ def processAlgorithm(self, context, feedback):
feedback.pushCommandInfo(line)
loglines.append(line)
if ProcessingConfig.getSetting(Grass7Utils.GRASS_LOG_COMMANDS):
QgsMessageLog.logMessage(loglines, self.tr('Processing'), QgsMessageLog.INFO)
QgsMessageLog.logMessage("\n".join(loglines), self.tr('Processing'), QgsMessageLog.INFO)

Grass7Utils.executeGrass7(self.commands, feedback, self.outputCommands)

Expand Down

0 comments on commit 3f66914

Please sign in to comment.