ConsoleLogLevel is not OFF for some methods?

I tried this method getText() and set ConsoleLogLevel to OFF, but still shows Logging information in console.

caps.setCapability(SeeTestCapabilityType.CONSOLE_LOG, SeeTestConsoleLogLevel.INFO);

Set categoryName=new HashSet();
List weCategories=driver.findElements(By.xpath(“xpath=//*[@resource-id=‘com.flipkart.android:id/product_widget_title’]”));
for(int i=0;i<noCatogeries;i++)
{
categoryName.add(weCategories.get(i).getText());
}

After executing this, i am getting console output of getText() method used above. Can this be disabled?

Same problem for me, you are using Appium 10.8.X, (SeeTest on Capability), an upgrade to Appium 10.9 is a great solution (nothing in the console )

I am using 10.9.

By the way, the extensive(Debug/INFO level log)console is displayed for all methods, but displaying for certain methods like getText().

On your first message, you talk about ConsoleLogLevel to OFF but it is on INFO on the script above, you used
caps.setCapability(SeeTestCapabilityType.CONSOLE_LOG, SeeTestConsoleLogLevel.OFF); ? what happens when you delete this line?

That was copy paste problem. Thanks for pointing it out.

Dont bother about the first line. While i tried i executed with right statement.

caps.setCapability(SeeTestCapabilityType.CONSOLE_LOG, SeeTestConsoleLogLevel.OFF);

As specified above, we are getting extra console output even after setting it to OFF.