Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
1 addition
and
1 deletion.
-
+1
−1
python/plugins/processing/algs/gdal/GdalUtils.py
|
@@ -86,7 +86,7 @@ def runGdal(commands, progress=None): |
|
|
progress.setConsoleInfo(line) |
|
|
loglines.append(line) |
|
|
except IOError as e: |
|
|
raise IOError(e.message + u'\nAfter reading {} lines, last lines: {}'.format(len(logines), u'\n'.join(loglines[-10:]))) |
|
|
raise IOError(e.message + u'\nAfter reading {} lines, last lines: {}'.format(len(loglines), u'\n'.join(loglines[-10:]))) |
|
|
ProcessingLog.addToLog(ProcessingLog.LOG_INFO, loglines) |
|
|
GdalUtils.consoleOutput = loglines |
|
|
|
|
|