tsqa/environment.py [80:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            'stdout': subprocess.PIPE,
            'stderr': subprocess.PIPE
        }

        if log.isEnabledFor(logging.DEBUG):
            # if this is debug, lets not capture the output and let it go to
            # stdout and stderr
            kwargs['stdout'] = None
            kwargs['stderr'] = None
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tsqa/environment.py [164:172]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    'stdout': subprocess.PIPE,
                    'stderr': subprocess.PIPE
                }

                if log.isEnabledFor(logging.DEBUG):
                    # if this is debug, lets not capture the output and let it go to
                    # stdout and stderr
                    kwargs['stdout'] = None
                    kwargs['stderr'] = None
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



