How to suppress webdriver-manager logs
Asked Answered
I

1

0

I am using webdrivermanager to manage the drivers in my project but on updating to the latest version 2.2.1 my project is flooded with webdrivermanger logs, the logs are causing hassle while searching for my own stuff in the logs. How can I stop/suppress these logs?

Inquire answered 8/5, 2018 at 6:32 Comment(0)
I
0

The issue is "solved" by adding logback.xml file to resources folder with following:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <logger name="org.apache" level="ERROR" />
    <logger name="httpclient" level="ERROR" />
</configuration>
Inquire answered 11/5, 2018 at 9:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.