From 840ac3011668671aed9de70eb8e24bec4765746f Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 30 May 2019 18:28:39 +0200 Subject: [PATCH] ios: Print the arguments in a prettier manner --- ios/Runner/AppDelegate.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/Runner/AppDelegate.m b/ios/Runner/AppDelegate.m index c2d459ea..bc5f6dc9 100644 --- a/ios/Runner/AppDelegate.m +++ b/ios/Runner/AppDelegate.m @@ -27,10 +27,10 @@ NSString* GetDirectoryOfType(NSSearchPathDirectory dir) { NSString *method = [call method]; NSDictionary *arguments = [call arguments]; - NSLog(@"Called %@ with args - ", method); + NSLog(@"Called %@", method); if (arguments != nil) { for (NSString *key in [arguments allKeys]) { - NSLog(@" %@: %@", key, [arguments objectForKey:key]); + NSLog(@". %@: %@", key, [arguments objectForKey:key]); } }