summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Guerra <fabian.guerra@mapbox.com>2018-10-29 11:22:43 -0700
committerFabian Guerra <fabian.guerra@mapbox.com>2018-11-13 15:56:40 -0800
commitb8be2366a59a327e3bb61568e6f73c7154fff10b (patch)
tree4113346c05af0c3fda8684eef1f841b7b700ea03
parent01d9005c3bab3a725e0be97d545ce6587c53123d (diff)
downloadqtlocation-mapboxgl-b8be2366a59a327e3bb61568e6f73c7154fff10b.tar.gz
[ios, macos] Update the logging subsystem to platform agnostic.
-rw-r--r--platform/darwin/src/MGLLoggingConfiguration.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/darwin/src/MGLLoggingConfiguration.m b/platform/darwin/src/MGLLoggingConfiguration.m
index 93f2698287..da4155b758 100644
--- a/platform/darwin/src/MGLLoggingConfiguration.m
+++ b/platform/darwin/src/MGLLoggingConfiguration.m
@@ -49,7 +49,7 @@
OS_LOG_TYPE_ERROR,
OS_LOG_TYPE_FAULT };
dispatch_once(&once, ^ {
- mapbox_log = os_log_create("com.mapbox.maps-ios-sdk", "SDK");
+ mapbox_log = os_log_create("com.mapbox.maps", "SDK");
});
NSUInteger logTypesCount = sizeof(log_types) / sizeof(os_log_type_t);
NSAssert(level <= logTypesCount, @"There is an attempt to log a non suported logging level.");