You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Earlier subprocess.popen implementations didn't have an encoding setting so command_runner will deal with encoding for those.
100
100
101
-
You can also disable command_runner's encoding in order to get raw process output (bytes) by passing False boolean.
101
+
You can also disable command_runner's internal encoding in order to get raw process output (bytes) by passing False boolean.
102
102
103
103
Example:
104
104
```python
@@ -403,6 +403,21 @@ It also uses the following standard arguments:
403
403
404
404
**Note that ALL other subprocess.Popen arguments are supported, since they are directly passed to subprocess.**
405
405
406
+
### logging
407
+
408
+
Even muted, `command_runner` will still log errors.
409
+
If you want to completely mute `command_runner`, you will have to set it's logger instance to `logger.CRITICAL` level, since this level is never called.
410
+
411
+
Example of entirely muted `command_runner` execution:
0 commit comments