Running Xcode 13 I see the following log when launching my iOS app in the Simulator:
Writing analzed variants.
Note that this is, hopefully, a misspelling of the log:
Writing analyzed variants.
What is causing this log noise? Is something in my code triggering it?
How can I hide this "Writing analzed variants." Xcode log?
3
Answers
According to Quinn “The Eskimo!” at Apple Developer Technical Support, this message is Xcode log noise and can be ignored.
An Apple bug report should be filed to help flag and silence the log.
For me this issue warning coming because of keyboard was not working in my simulator, I have made some mistakes in my code in
SceneDelegate
forwindow
initialisation, but once I have removed that line of code this message not showing inlog/consol
these 2 lines I have removed from SceneDelegate, these two lines created this issue for me
So I have removed these from SceneDelegate
for
SceneDelegate
Code and the keybaord issue see thisThis was annoying me because the log lines seemed to be causing a delay, which made my UI feel sluggish. I tried a number of ways to speed up my segue code before seeing the lines in the log and thinking they might be taking time.
I was using a custom keyboard which didn’t have an equivalent in iOS, and I’d left "Use the Same Keyboard Language as macOS" selected in the Input > Keyboard menu. Turning that off got rid of the logging, and fixed the associated slowdown.