Bug 1223811 - Remove error log generated when collecting HAR data; r=jryans

This commit is contained in:
Jan Odvarko 2015-11-11 17:32:46 +01:00
Родитель 51d31d9ea3
Коммит fa95081104
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -209,11 +209,11 @@ HarCollector.prototype = {
let actor = packet.from;
// Skip events from unknown actors (not in the list).
// There could also be zombie requests received after the target is closed.
// It can happen when there are zombie requests received after
// the target is closed or multiple tabs are attached through
// one connection (one DebuggerClient object).
let file = this.getFile(packet.from);
if (!file) {
Cu.reportError("HarCollector.onNetworkEventUpdate; ERROR " +
"Unknown event actor: " + type, packet);
return;
}