Bug 1280645 - Remove debug logging statement in driver.js; r?automatedtester draft
authorAndreas Tolfsen <ato@mozilla.com>
Fri, 17 Jun 2016 15:56:45 +0100
changeset 379787 8a1baffdcef48c791b0afce8623b856f1e0012d0
parent 379746 5f95858f8ddf21ea2271a12810332efd09eff138
child 523575 12a030bb6383187f92a9b076a5208d0643a527cd
push id21058
push userbmo:ato@mozilla.com
push dateFri, 17 Jun 2016 15:05:03 +0000
reviewersautomatedtester
bugs1280645
milestone50.0a1
Bug 1280645 - Remove debug logging statement in driver.js; r?automatedtester MozReview-Commit-ID: 4MgUCESlLl5
testing/marionette/driver.js
--- a/testing/marionette/driver.js
+++ b/testing/marionette/driver.js
@@ -201,17 +201,16 @@ GeckoDriver.prototype.switchToGlobalMess
  * @param {string} name
  *     Suffix of the targetted message listener ({@code Marionette:<suffix>}).
  * @param {Object=} msg
  *     JSON serialisable object to send to the listener.
  * @param {number=} cmdId
  *     Command ID to ensure synchronisity.
  */
 GeckoDriver.prototype.sendAsync = function(name, msg, cmdId) {
-  logger.info(`sendAsync ${this.sessionId}`)
   let curRemoteFrame = this.curBrowser.frameManager.currentRemoteFrame;
   name = "Marionette:" + name;
 
   // TODO(ato): When proxy.AsyncMessageChannel
   // is used for all chrome <-> content communication
   // this can be removed.
   if (cmdId) {
     msg.command_id = cmdId;