better rsync logging

This commit is contained in:
brent s. 2020-06-18 12:45:08 -04:00
parent 1a5068d77d
commit ac1886e46b
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class RSync(_base.BaseFetcher):
if stderr != '' or cmd.returncode != 0:
_logger.error('Rsync to {0}:{1} returned exit status {2}'.format(self.domain, self.port, cmd.returncode))
_logger.debug('STDERR: {0}'.format(stderr))
warnings.warn('Rsync process returned non-zero')
warnings.warn('Rsync process returned non-zero ({0}) for {1}'.format(cmd.returncode, ' '.join(cmd_str)))
return(None)

def fetch_content(self, remote_filepath):
@ -93,7 +93,7 @@ class RSync(_base.BaseFetcher):
if stderr != '' or cmd.returncode != 0:
_logger.error('Rsync to {0}:{1} returned exit status {2}'.format(self.domain, self.port, cmd.returncode))
_logger.debug('STDERR: {0}'.format(stderr))
warnings.warn('Rsync process returned non-zero')
warnings.warn('Rsync process returned non-zero ({0}) for {1}'.format(cmd.returncode, ' '.join(cmd_str)))
with open(tf, 'rb') as fh:
raw_content = fh.read()
os.remove(tf)