-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Closed
Labels
C-rustRust code is mostly Selenium ManagerRust code is mostly Selenium ManagerI-enhancementSomething could be betterSomething could be better
Description
Feature and motivation
If we stream errors from Selenium Manager (#13414), we should be able to set the logging level at whatever Selenium's logging level is set to. So I propose we get rid of --debug and --trace and replace with a generic --log-level that accepts error, warn, info, debug, trace
Usage example
Have this output Debug info:
Logger.getLogger("").setLevel(Level.FINE);
Arrays.stream(logger.getHandlers()).forEach(handler -> {
handler.setLevel(Level.FINE);
});
new DriverFinder(service, options).getDriverPath();
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
C-rustRust code is mostly Selenium ManagerRust code is mostly Selenium ManagerI-enhancementSomething could be betterSomething could be better
Type
Projects
Status
Done