So I’ll keep this short. I imported all the packages just fine and the app was working just fine until I started with the Firebase Auth stuff. I’m getting the following error: "Cannot find ‘logger’ in scope". I have all the packages imported as shown in the image. Would appreciate any recommendation. Thanks!
Question posted in Xcode
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
Whether you're new to Xcode or an experienced developer, our archive has everything you need to know about this integrated development environment (IDE). From basic functionalities to advanced features, our archive covers a wide range of Xcode-related questions and answers. Browse our archive now and find solutions to your Xcode questions, and take your app development skills to the next level
2
Answers
That’s it. You just needed to know the right framework.
Then you need to create an instance.
I had to do
import OSLog
at the top of the file and then write the actual log statement like this:Logger.info(tag: "myTag", message: "myMessage")