`DevSupportManager`: tag `RELOAD` marker with metro host

Summary: Adds the configured metro host to `ReactMarker.logMarker(ReactMarkerConstants.RELOAD)`. This may be used for diagnostics in marker listeners

Reviewed By: bnham

Differential Revision: D7041086

fbshipit-source-id: 0b0777b1cd4c74b29b9245e925cf7851b24985fa
This commit is contained in:
David Aurelio 2018-02-23 03:25:25 -08:00 committed by Facebook Github Bot
parent d352c93487
commit e214bb3971
1 changed files with 3 additions and 1 deletions

View File

@ -825,7 +825,9 @@ public class DevSupportManagerImpl implements
UiThreadUtil.assertOnUiThread();
ReactMarker.logMarker(ReactMarkerConstants.RELOAD);
ReactMarker.logMarker(
ReactMarkerConstants.RELOAD,
mDevSettings.getPackagerConnectionSettings().getDebugServerHost());
// dismiss redbox if exists
hideRedboxDialog();