From ca129e0c79c60db57c7ad3144aad3f4293dab8cd Mon Sep 17 00:00:00 2001 From: Fabian Guerra Soto Date: Tue, 22 Jan 2019 15:42:28 -0800 Subject: [ios, macos] MGLMapView logging improvements. (#13776) Added NSEdgeInsets to NSString function to improve the debugging on macOS. Added debug logs to MGLMapView. --- platform/ios/src/MGLMapView.mm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'platform/ios') diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm index 258f6eea87..b3b8c8777d 100644 --- a/platform/ios/src/MGLMapView.mm +++ b/platform/ios/src/MGLMapView.mm @@ -1109,11 +1109,13 @@ public: - (void)setContentInset:(UIEdgeInsets)contentInset { + MGLLogDebug(@"Setting contentInset: %@", NSStringFromUIEdgeInsets(contentInset)); [self setContentInset:contentInset animated:NO]; } - (void)setContentInset:(UIEdgeInsets)contentInset animated:(BOOL)animated { + MGLLogDebug(@"Setting contentInset: %@ animated:", NSStringFromUIEdgeInsets(contentInset), MGLStringFromBOOL(animated)); if (UIEdgeInsetsEqualToEdgeInsets(contentInset, self.contentInset)) { return; @@ -1275,6 +1277,7 @@ public: - (void)setPreferredFramesPerSecond:(MGLMapViewPreferredFramesPerSecond)preferredFramesPerSecond { + MGLLogDebug(@"Setting preferredFramesPerSecond: %ld", preferredFramesPerSecond); if (_preferredFramesPerSecond == preferredFramesPerSecond) { return; @@ -5322,11 +5325,13 @@ public: - (void)setTargetCoordinate:(CLLocationCoordinate2D)targetCoordinate { + MGLLogDebug(@"Setting targetCoordinate: %@", MGLStringFromCLLocationCoordinate2D(targetCoordinate)); [self setTargetCoordinate:targetCoordinate animated:YES]; } - (void)setTargetCoordinate:(CLLocationCoordinate2D)targetCoordinate animated:(BOOL)animated { + MGLLogDebug(@"Setting targetCoordinate: %@ animated: %@", MGLStringFromCLLocationCoordinate2D(targetCoordinate), MGLStringFromBOOL(animated)); if (targetCoordinate.latitude != self.targetCoordinate.latitude || targetCoordinate.longitude != self.targetCoordinate.longitude) { -- cgit v1.2.1