Skip to content

Commit e0b55cf

Browse files
committed
removing '-debug' command line parameter for grid hub, it isn't used anywhere.
adding fine tuned logging should be done via java logging mechanisms.
1 parent 5975d47 commit e0b55cf

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

java/server/src/org/openqa/grid/internal/utils/GridHubConfiguration.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,6 @@ public class GridHubConfiguration {
106106
* max number of thread for Jetty. Default is normally 255.
107107
*/
108108
private int jettyMaxThreads = -1;
109-
/**
110-
* to specify that logging level should be set to Level.DEBUG
111-
*/
112-
private boolean isDebug = false;
113109

114110
private Map<String, Object> allParams = new HashMap<>();
115111

@@ -219,10 +215,6 @@ public void loadFromCommandLine(String[] args) {
219215
if (helper.isParamPresent("-log")) {
220216
logFilename = helper.getParamValue("-log");
221217
}
222-
if (helper.isParamPresent("-debug")) {
223-
isDebug = true;
224-
}
225-
226218
}
227219

228220
/**
@@ -383,10 +375,6 @@ public String getLogFilename() {
383375
return logFilename;
384376
}
385377

386-
public boolean isDebug() {
387-
return isDebug;
388-
}
389-
390378
public Map<String, String> getGrid1Mapping() {
391379
return grid1Mapping;
392380
}

0 commit comments

Comments
 (0)