aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-11-08 14:49:37 +0100
committerMs2ger <Ms2ger@gmail.com>2016-11-08 14:49:45 +0100
commit783f754d092466f603b2b248cc4d5a16cc27a377 (patch)
treef9ba1d816e66b3794c4a3e390e0464ea5c5a9cdb
parent085c52dfbce125b9f777eadb1ed149e04548fc45 (diff)
downloadservo-783f754d092466f603b2b248cc4d5a16cc27a377.tar.gz
servo-783f754d092466f603b2b248cc4d5a16cc27a377.zip
Log debug messages when devtools is not notified about a HTTP request.
-rw-r--r--components/net/http_loader.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/net/http_loader.rs b/components/net/http_loader.rs
index 3b0202db868..8455a7c0fd9 100644
--- a/components/net/http_loader.rs
+++ b/components/net/http_loader.rs
@@ -835,9 +835,11 @@ pub fn obtain_response<A>(request_factory: &HttpRequestFactory<R=A>,
request_body.clone(), pipeline_id, time::now(),
connect_end - connect_start, send_end - send_start, is_xhr))
} else {
+ debug!("Not notifying devtools (no pipeline_id)");
None
}
} else {
+ debug!("Not notifying devtools (no request_id)");
None
};