@@ -132,22 +132,34 @@ extern void FIRLogDebug(NSString *category, NSString *messageCode, NSString *mes
132132 NS_FORMAT_FUNCTION (3 , 4 );
133133
134134/* *
135- * This function is similar to the one above, except it takes a `va_list` instead of the listed variables.
136- * The following functions accept the following parameters in order:
137- * (required) service name of type FirebaseLoggerService.
138- * (required) message code starting from "I-" which means iOS, followed by a capitalized
139- * three-character service identifier and a six digit integer message ID that is unique
140- * within the service.
141- * An example of the message code is @"I-COR000001".
142- * See go/firebase-log-proposal for details.
143- * (required) message string which can be a format string.
135+ * This function is similar to the one above, except it takes a `va_list` instead of the listed
136+ * variables. The following functions accept the following parameters in order: (required) service
137+ * name of type FirebaseLoggerService. (required) message code starting from "I-" which means iOS,
138+ * followed by a capitalized three-character service identifier and a six digit integer message ID
139+ * that is unique within the service. An example of the message code is @"I-COR000001". See
140+ * go/firebase-log-proposal for details. (required) message string which can be a format string.
144141 * (optional) A va_list
145142 */
146- extern void FIRLogBasicError (NSString *category, NSString *messageCode, NSString *message, va_list args_ptr);
147- extern void FIRLogBasicWarning (NSString *category, NSString *messageCode, NSString *message, va_list args_ptr);
148- extern void FIRLogBasicNotice (NSString *category, NSString *messageCode, NSString *message, va_list args_ptr);
149- extern void FIRLogBasicInfo (NSString *category, NSString *messageCode, NSString *message, va_list args_ptr);
150- extern void FIRLogBasicDebug (NSString *category, NSString *messageCode, NSString *message, va_list args_ptr);
143+ extern void FIRLogBasicError (NSString *category,
144+ NSString *messageCode,
145+ NSString *message,
146+ va_list args_ptr);
147+ extern void FIRLogBasicWarning (NSString *category,
148+ NSString *messageCode,
149+ NSString *message,
150+ va_list args_ptr);
151+ extern void FIRLogBasicNotice (NSString *category,
152+ NSString *messageCode,
153+ NSString *message,
154+ va_list args_ptr);
155+ extern void FIRLogBasicInfo (NSString *category,
156+ NSString *messageCode,
157+ NSString *message,
158+ va_list args_ptr);
159+ extern void FIRLogBasicDebug (NSString *category,
160+ NSString *messageCode,
161+ NSString *message,
162+ va_list args_ptr);
151163
152164#ifdef __cplusplus
153165} // extern "C"
0 commit comments