Choose what is on the console

Hello,
I made a test and I saw a lot of informations are writting on th console (like all the step ):
[Fri Jun 30 14:24:43 CEST 2017] [driver] context: NATIVE_APP
[Fri Jun 30 14:24:43 CEST 2017] [driver] application under test:
[Fri Jun 30 14:24:43 CEST 2017] [driver] app path: null
[Fri Jun 30 14:24:43 CEST 2017] [driver] full reset: false
[Fri Jun 30 14:24:43 CEST 2017] [driver] instrument: false
[Fri Jun 30 14:24:43 CEST 2017] [driver] no reset: false
etc…

Is it possible to disable this informations and keep just my own informations?

Hi,

The report you are seeing in generated by SeeTestDriver.

If you wish to disable the log, use the following code line:
dc.setCapability(SeeTestCapabilityType.CONSOLE_LOG, SeeTestConsoleLogLevel.OFF);

However, since you are using SeeTestDriver it means that you are using Appium Studio 10.8. I recommend upgrading to Appium Studio 10.9 which makes use of Appium’s native drivers. Upgrading to Appium Studio 10.9 and using the default drivers (replace any instance of SeeTestAndroidDriver with AndroidDriver - same for iOS). With the new Appium Studio 10.9 and the default Appium Driver, you will have control over what’s printed in to the console.

Yes I’m using Appium Studio 10.8.41 :wink:
I tried to use the code line:
dc.setCapability(SeeTestCapabilityType.CONSOLE_LOG, SeeTestConsoleLogLevel.OFF);
but all the informations before the connexion of the phone still written (like on my example)
I will try to update Appium Studio, thanks