Bad level value for property: some.package.name.level The above error is produced by java.util.logging.LogManager when the log level is invalid. for eg. you might have specified a log level of DEBUG and DEBUG is not a valid log level in java.util.logging. org.openqa.level=DEBUG Valid log levels in java.util.logging are SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL, OFF Correct usage is org.openqa.level=FINE
Comments
Post a Comment