zmirror: Fix use of print rather than logging.foo in send_zephyr.
(imported from commit 7188f5364a864f2f144fb630d7a8c85d69219c42)
This commit is contained in:
parent
44c5315cd7
commit
1e91142e38
|
@ -423,15 +423,15 @@ def send_zephyr(zwrite_args, content):
|
||||||
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
||||||
stdout, stderr = p.communicate(input=content.encode("utf-8"))
|
stdout, stderr = p.communicate(input=content.encode("utf-8"))
|
||||||
if p.returncode:
|
if p.returncode:
|
||||||
print "zwrite command '%s' failed with return code %d:" % (
|
logging.error("zwrite command '%s' failed with return code %d:" % (
|
||||||
" ".join(zwrite_args), p.returncode,)
|
" ".join(zwrite_args), p.returncode,))
|
||||||
if stdout:
|
if stdout:
|
||||||
print stdout
|
logging.info("stdout: " + stdout)
|
||||||
elif stderr:
|
elif stderr:
|
||||||
print "zwrite command '%s' printed the following warning:" % (
|
logging.warning("zwrite command '%s' printed the following warning:" % (
|
||||||
" ".join(zwrite_args),)
|
" ".join(zwrite_args),))
|
||||||
if stderr:
|
if stderr:
|
||||||
print stderr
|
logging.warning("stderr: " + stderr)
|
||||||
return (p.returncode, stderr)
|
return (p.returncode, stderr)
|
||||||
|
|
||||||
def send_authed_zephyr(zwrite_args, content):
|
def send_authed_zephyr(zwrite_args, content):
|
||||||
|
|
Loading…
Reference in a new issue