On Wed, Feb 17, 2016 at 7:32 PM, Chris Angelico <[email protected]> wrote:
> The print statement/function happily accepts multiple arguments, and
> will join them according to a set of predefined rules. The logging
> functions don't have those rules, so they take one message and some
> optional parameters. Try this, instead:
>
> logging.info("%r %r %r", out, err, ret)
>
Thanks this solved my issue :)
--
https://mail.python.org/mailman/listinfo/python-list
