Fix stray print statement

This breaks ffprobe's JSON mode
This commit is contained in:
Joshua M. Boniface 2021-02-11 01:53:01 -05:00
parent d0fd57309f
commit 8c1f63d2d9

View file

@ -325,7 +325,7 @@ def main():
log.info("Starting process loop")
target_host = get_target_host()
print("[rffmpeg] Running on {}".format(target_host))
log.info("[rffmpeg] Running on {}".format(target_host))
if target_host == "localhost":
returncode = run_local_ffmpeg()
break