Bug 1019944 - mach logging shouldn't eat whitespace at the start of the line. r=gps

This commit is contained in:
Markus Stange
2014-06-25 10:35:32 +02:00
parent 6c519ff2fd
commit 227f9e8049

View File

@@ -88,7 +88,7 @@ class ProcessExecutionMixin(LoggingMixin):
if not log_name:
return
self.log(log_level, log_name, {'line': line.strip()}, '{line}')
self.log(log_level, log_name, {'line': line.rstrip()}, '{line}')
use_env = {}
if explicit_env: