Skip to content

Commit

Permalink
removing '-debug' command line parameter for grid hub, it isn't used …
Browse files Browse the repository at this point in the history
…anywhere.

adding fine tuned logging should be done via java logging mechanisms.
  • Loading branch information
lukeis committed Sep 8, 2015
1 parent 5975d47 commit e0b55cf
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,6 @@ public class GridHubConfiguration {
* max number of thread for Jetty. Default is normally 255.
*/
private int jettyMaxThreads = -1;
/**
* to specify that logging level should be set to Level.DEBUG
*/
private boolean isDebug = false;

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

Expand Down Expand Up @@ -219,10 +215,6 @@ public void loadFromCommandLine(String[] args) {
if (helper.isParamPresent("-log")) {
logFilename = helper.getParamValue("-log");
}
if (helper.isParamPresent("-debug")) {
isDebug = true;
}

}

/**
Expand Down Expand Up @@ -383,10 +375,6 @@ public String getLogFilename() {
return logFilename;
}

public boolean isDebug() {
return isDebug;
}

public Map<String, String> getGrid1Mapping() {
return grid1Mapping;
}
Expand Down

0 comments on commit e0b55cf

Please sign in to comment.