In my Flutter project, I call native Android code and native iOS code.
From my native Android code, I use Log.i("tag", "my log") to log anything I want, and it appears in both the Logcat and the Flutter console.
Now, I want to do the same from my native iOS code. I tried:
print("my log")
NSLog("my log")
but nothing appears anywhere, neither in the Xcode console nor in the Flutter console, which is really annoying when it comes to debugging...
Also, I run my app on an iOS emulator.
So how can I see the log from the native iOS code?
Thanks.
