Commit 268a2cc7 authored by Luciano Pacheco's avatar Luciano Pacheco Committed by Commit Bot

Files app: Remove debug logs

These logs were added as part of debugging flakiness, which has been
fixed, so removing the logs.

Test: No change in behaviour.
Bug: 899664
Change-Id: Ifb66c9beb6ab22bd1002dbda64dcbe461d5fb8e3
Reviewed-on: https://chromium-review.googlesource.com/c/1325269
Commit-Queue: Luciano Pacheco <lucmult@chromium.org>
Commit-Queue: Noel Gordon <noel@chromium.org>
Reviewed-by: default avatarNoel Gordon <noel@chromium.org>
Cr-Commit-Position: refs/heads/master@{#606285}
parent 93f66e0e
...@@ -972,9 +972,6 @@ DirectoryModel.prototype.changeDirectoryEntry = function( ...@@ -972,9 +972,6 @@ DirectoryModel.prototype.changeDirectoryEntry = function(
if (dirEntry instanceof VolumeEntry) if (dirEntry instanceof VolumeEntry)
dirEntry = assert(dirEntry.rootEntry); dirEntry = assert(dirEntry.rootEntry);
// TODO(lucmult): Remove this log once flakiness is fixed.
console.log('changeDirectoryEntry: ' + dirEntry.name);
// Increment the sequence value. // Increment the sequence value.
this.changeDirectorySequence_++; this.changeDirectorySequence_++;
this.clearSearch_(); this.clearSearch_();
......
...@@ -756,8 +756,6 @@ EntryListItem.prototype.updateSubDirectories = function( ...@@ -756,8 +756,6 @@ EntryListItem.prototype.updateSubDirectories = function(
if (this.entries_.length > 0) if (this.entries_.length > 0)
this.expanded = true; this.expanded = true;
opt_successCallback && opt_successCallback(); opt_successCallback && opt_successCallback();
// TODO(lucmult): Remove this log once flakiness is fixed.
console.log('EntryListItem children loaded.');
}; };
const reader = this.entry.createReader(); const reader = this.entry.createReader();
const entries = []; const entries = [];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment