MCPcopy Index your code
hub / github.com/SeleniumHQ/selenium / isDebugAll

Method isDebugAll

java/src/org/openqa/selenium/internal/Debug.java:51–60  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

49 }
50
51 public static boolean isDebugAll() {
52 boolean everything = Boolean.parseBoolean(System.getenv("SE_DEBUG"));
53 if (everything && DEBUG_WARNING_LOGGED.compareAndSet(false, true)) {
54 String warn =
55 "WARNING: Environment Variable `SE_DEBUG` is set; Selenium is forcing verbose logging"
56 + " which may override user-specified settings.";
57 System.err.println(warn);
58 }
59 return everything;
60 }
61
62 public static void configureLogger() {
63 if (!isDebugAll() || loggerConfigured) {

Callers 7

parseLogOutputMethod · 0.95
loadSystemPropertiesMethod · 0.95
loadSystemPropertiesMethod · 0.95
setLoggingLevelMethod · 0.95
getOutputStreamMethod · 0.95
configureLoggerMethod · 0.95
loadSystemPropertiesMethod · 0.95

Calls 1

parseBooleanMethod · 0.80

Tested by

no test coverage detected