Commit fd683c7b authored by Andreas Tolfsen's avatar Andreas Tolfsen
Browse files

Bug 1272639 - Remove debug logging; r=jgriffin

MozReview-Commit-ID: 95bQjH6FNnD

--HG--
extra : rebase_source : 0e7039ccb7d02636effdf1850ea162335a979734
parent d9623c94
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -33,7 +33,6 @@ const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
browser.Context = class {

  constructor(win, driver) {
    logger.info("Context ctor");
    this.browser = undefined;
    this.window = win;
    this.driver = driver;
+0 −2
Original line number Diff line number Diff line
@@ -281,9 +281,7 @@ GeckoDriver.prototype.addFrameCloseListener = function(action) {
 *     Returns the unique server-assigned ID of the window.
 */
GeckoDriver.prototype.addBrowser = function(win) {
  logger.info("addBrowser");
  let bc = new browser.Context(win, this);
  logger.info("bc=" + bc);
  let winId = win.QueryInterface(Ci.nsIInterfaceRequestor)
      .getInterface(Ci.nsIDOMWindowUtils).outerWindowID;
  winId = winId + ((this.appName == "B2G") ? "-b2g" : "");