diff options
author | Justin R. Miller <incanus@codesorcery.net> | 2015-07-07 09:16:08 -0700 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2015-07-08 19:46:04 +0200 |
commit | c7011345c9e24eea7a3bad094f4aa48a638e1509 (patch) | |
tree | 55c54fd234679543c0ca6c487383ea347006dc77 /ios | |
parent | a1c2529e33a1cade763cd7ae91ecbc1fad2262ad (diff) | |
download | qtlocation-mapboxgl-c7011345c9e24eea7a3bad094f4aa48a638e1509.tar.gz |
remove logging
Diffstat (limited to 'ios')
-rw-r--r-- | ios/app/MBXViewController.mm | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ios/app/MBXViewController.mm b/ios/app/MBXViewController.mm index 054f576d6e..e11f7eea5c 100644 --- a/ios/app/MBXViewController.mm +++ b/ios/app/MBXViewController.mm @@ -349,8 +349,6 @@ mbgl::Settings_NSUserDefaults *settings = nullptr; if ( ! image) { - NSLog(@"iOS: creating sprite for %p / '%@'", annotation, lastTwoCharacters); - CGRect rect = CGRectMake(0, 0, 20, 15); UIGraphicsBeginImageContextWithOptions(rect.size, NO, [[UIScreen mainScreen] scale]); @@ -377,10 +375,6 @@ mbgl::Settings_NSUserDefaults *settings = nullptr; UIGraphicsEndImageContext(); } - else - { - NSLog(@"iOS: reusing sprite for %p / '%@'", annotation, lastTwoCharacters); - } return image; } |