Mr.USA
Mr.USA

Reputation: 1

Java code to stop seeing detailed logs in ChromeDriver?

Can someone share a code which stops ChromeDriver to display logs in console. These red color logs are taking lots of space.

Thanks

Upvotes: 0

Views: 531

Answers (1)

Srinivasan_Murugan
Srinivasan_Murugan

Reputation: 66

I hope the code below helps you to get rid of those red-coloured 'logs':

System.setProperty("webdriver.chrome.silentOutput", "true");        
java.util.logging.Logger.getLogger("org.openqa.selenium").setLevel(Level.SEVERE);

Upvotes: 2

Related Questions