I'm creating a pet project and there's one strange issue. When I open Debug View Hierarchy, a lot of similar errors appear in console. It looks like:
2023-06-14 15:47:07.356740+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
2023-06-14 15:47:07.356807+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
2023-06-14 15:47:07.359829+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
2023-06-14 15:47:07.359904+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
2023-06-14 15:47:07.359964+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
2023-06-14 15:47:07.363650+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
2023-06-14 15:47:07.363726+0300 BFB[19678:4582894] [API] Failed to get renderer info (client=0x42b6b2ed) [0x5 (os/kern) failure]
(And so many of them)
What are they caused by and how can I remove this? My pet project is just simple, only standard UIKit items like UIViews / UITableViews are used.
I'm using Apple M2 Max CPU with 32 Gb RAM and Mac OS Ventura 13.4
Swift version is 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
It may be related to project, because I created another from scratch, placed simple label and tried to debug its views - errors didn't appear.
Thank you.