FIRConfiguration
@interface FIRConfiguration : NSObject
This interface provides global level properties that the developer can tweak.
-
Returns the shared configuration object.
Declaration
Objective-C
@property (class, nonatomic, readonly) NS_SWIFT_NAME(shared) FIRConfiguration *sharedInstance;
-
Sets the logging level for internal Firebase logging. Firebase will only log messages that are logged at or below
loggerLevel
. The messages are logged both to the Xcode console and to the device’s log. Note that if an app is running from AppStore, it will never log above.notice
even ifloggerLevel
is set to a higher (more verbose) setting.Declaration
Objective-C
- (void)setLoggerLevel:(FIRLoggerLevel)loggerLevel;
Parameters
loggerLevel
The maximum logging level. The default level is set to FIRLoggerLevelNotice.