Disable Server log

I’m automating the test launch from a bash file.

The server runs in the same console session than the client but this causes an unreadable output log from the client.

For that I need to disable the server log to maintain a clean screen .

(I’m launching Appium with ’ appium ’ command with npm-nodejs)

Thank you

You could redirect standard out (and standard error as well, if you really want to) to /dev/null.

1 Like