Bug 1287751 - Remove logging in GeckoDriver#startBrowser; r?automatedtester draft
authorAndreas Tolfsen <ato@mozilla.com>
Tue, 19 Jul 2016 13:25:56 +0100
changeset 389471 935efbbcaec3df7ee2c6a8df16c4cfa7a7222f28
parent 389281 feaaf1af1065257b9178faca8b67eed9657b4a17
child 525766 d59d174669936578c9c73292f00b7a21e4f615e8
push id23421
push userbmo:ato@mozilla.com
push dateTue, 19 Jul 2016 12:34:59 +0000
reviewersautomatedtester
bugs1287751
milestone50.0a1
Bug 1287751 - Remove logging in GeckoDriver#startBrowser; r?automatedtester MozReview-Commit-ID: K7ZV3BajNS8
testing/marionette/driver.js
--- a/testing/marionette/driver.js
+++ b/testing/marionette/driver.js
@@ -302,18 +302,17 @@ GeckoDriver.prototype.addBrowser = funct
  * frame script will be loaded into it.  If isNewSession is true, we will
  * switch focus to the start frame when it registers.
  *
  * @param {nsIDOMWindow} win
  *     Window whose browser we need to access.
  * @param {boolean=false} isNewSession
  *     True if this is the first time we're talking to this browser.
  */
-GeckoDriver.prototype.startBrowser = function(win, isNewSession=false) {
-  logger.info(`startBrowser ${this.sessionId}`)
+GeckoDriver.prototype.startBrowser = function(win, isNewSession = false) {
   this.mainFrame = win;
   this.curFrame = null;
   this.addBrowser(win);
   this.curBrowser.isNewSession = isNewSession;
   this.curBrowser.startSession(isNewSession, win, this.whenBrowserStarted.bind(this));
 };
 
 /**