Skip to content

Commit 5097728

Browse files
committed
Deleting debug prints
1 parent b687cae commit 5097728

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

java/client/src/org/openqa/selenium/firefox/GeckoDriverService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ protected ImmutableList<String> createArgs() {
183183
protected GeckoDriverService createDriverService(File exe, int port,
184184
ImmutableList<String> args,
185185
ImmutableMap<String, String> environment) {
186-
System.err.println("Starting GeckoDriverService on port " + port);
187186
try {
188187
GeckoDriverService service = new GeckoDriverService(exe, port, args, environment);
189188
String firefoxLogFile = System.getProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE);

java/client/src/org/openqa/selenium/remote/service/DriverService.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ public void start() throws IOException {
183183
}
184184
process = new CommandLine(this.executable, args.toArray(new String[] {}));
185185
process.setEnvironmentVariables(environment);
186-
System.out.println("Starting " + process);
187186
process.copyOutputTo(getOutputStream());
188187
process.executeAsync();
189188

py/tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ commands =
1010
py{27,36}-firefox: py.test --driver=Firefox {posargs}
1111
py{27,36}-ie: py.test --driver=Ie {posargs}
1212
py{27,36}-marionette: py.test --driver=Marionette {posargs}
13-
py{27,36}-remote: py.test -s --driver=Remote {posargs}
13+
py{27,36}-remote: py.test --driver=Remote {posargs}
1414
py{27,36}-safari: py.test --driver=Safari {posargs}
1515
py{27,36}-chromiumedge: py.test --driver=ChromiumEdge {posargs}
1616
install_command = pip install -v --no-index --find-links=../third_party/py {opts} {packages}

0 commit comments

Comments
 (0)