This is a problem of my own creation, but hopefully someone can help me out. I'm essentially wrapping the functionality provided by the rbt suite of commands with an in-house script. What I'm doing is processing the input args, performing specific tasks that we need, and then eventually passing the rest on via run_from_argv().
For example, to create new review, the code distills down to this: from rbtools.commands import post p = post.Post() p.run_from_argv(args) This works fine, except that the logging messages from Post are now being printed to the console: $ myrbt post 821 .INFO:root:Generating diff for pending changeset 821 Generating diff for pending changeset 821 Review request #9 posted. I am hopelessly lost when it comes to using python logging, but I know that rbt suppress these message and I can't figure out how. Can someone nudge me in the right direction? Thanks! --Steve -- Supercharge your Review Board with Power Pack: https://www.reviewboard.org/powerpack/ Want us to host Review Board for you? Check out RBCommons: https://rbcommons.com/ Happy user? Let us know! https://www.reviewboard.org/users/ --- You received this message because you are subscribed to the Google Groups "reviewboard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
