Skip to content
Snippets Groups Projects
Commit 338dbdf5 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Use the newline (etc.) escaped version of the commandline being executed in logging/debug output.

parent c23651e9
No related branches found
No related tags found
No related merge requests found
......@@ -33,9 +33,7 @@ class Command(metaclass=abc.ABCMeta):
self._path = path
def start(self):
logger.debug(
"Executing %s", ' '.join([shlex.quote(x) for x in self.cmdline()])
)
logger.debug("Executing %s", self.shell_cmdline())
self._stdin = self.stdin()
# "stdin" used to be a feeder but we didn't need the functionality so
......
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