Log debug messages when devtools is not notified about a HTTP request.

This commit is contained in:
Ms2ger 2016-11-08 14:49:37 +01:00
parent 085c52dfbc
commit 783f754d09

View file

@ -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
};