What problem does this solve?
Assume that I have a simple listener that write to the console as below:
def start_test(self, test, result):
self.builtin.log_to_console(f">>> Executing test: {test.name}")
In the past, I have to enable pabot classic --verbose flag in order to see my above listener prints things on the console.
However, --verbose is too overkill to me. It also prints a lot of redundant things that I never want.
Proposed solution
What problem does this solve?
Assume that I have a simple listener that write to the console as below:
In the past, I have to enable pabot classic
--verboseflag in order to see my above listener prints things on the console.However,
--verboseis too overkill to me. It also prints a lot of redundant things that I never want.Proposed solution
Support a new mode:
--pabotconsole robotonlythat only print robot own logging and hide all pabot's stuff on the console.No need to use the classic
--verboseto display robot internal logging