Add more information to activity events
Reviewed By: matryoshcow Differential Revision: D3950787 fbshipit-source-id: b6ac22027380a9f7cc7bcb39ecd33d5c9255301f
This commit is contained in:
parent
9b261dbc94
commit
90db4f3c6d
|
@ -369,6 +369,7 @@ class Bundler {
|
|||
null,
|
||||
{
|
||||
telemetric: true,
|
||||
entryPoint: entryFile,
|
||||
},
|
||||
);
|
||||
const modulesByName = Object.create(null);
|
||||
|
|
|
@ -635,6 +635,7 @@ class Server {
|
|||
return;
|
||||
}
|
||||
|
||||
const options = this._getOptionsFromUrl(req.url);
|
||||
const startReqEventId = Activity.startEvent(
|
||||
'Requesting bundle',
|
||||
{
|
||||
|
@ -642,9 +643,10 @@ class Server {
|
|||
},
|
||||
{
|
||||
telemetric: true,
|
||||
entryPoint: options.entryFile,
|
||||
details: req.url,
|
||||
},
|
||||
);
|
||||
const options = this._getOptionsFromUrl(req.url);
|
||||
debug('Getting bundle for request');
|
||||
const building = this._useCachedOrUpdateOrCreateBundle(options);
|
||||
building.then(
|
||||
|
|
Loading…
Reference in New Issue