File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 3
3
This library is for internal Google use only. It allows the logging of data and
4
4
telemetry from Google SDKs.
5
5
6
+ ## Set logging level
7
+
8
+ ### Swift
9
+
10
+ - Import ` GoogleDataTransport ` module:
11
+ ```
12
+ import GoogleDataTransport
13
+ ```
14
+ - Set logging level global variable to the desired value before calling `FirebaseApp.config()`:
15
+ ```
16
+ GDTCORConsoleLoggerLoggingLevel = GDTCORLoggingLevel.debug.rawValue
17
+ ```
18
+ ### Objective-C
19
+
20
+ - Import `GoogleDataTransport`:
21
+ ```
22
+ #import <GoogleDataTransport/GoogleDataTransport.h>
23
+ ```
24
+ - Set logging level global variable to the desired value before calling `-[FIRApp config]`:
25
+ ```
26
+ GDTCORConsoleLoggerLoggingLevel = GDTCORLoggingLevelDebug;
27
+ ```
28
+
6
29
## Prereqs
7
30
8
31
- `gem install --user cocoapods cocoapods-generate`
You can’t perform that action at this time.
0 commit comments