Reputation: 1
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
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