Skip to content

Commit

Permalink
Fix rollouts tests (#12500)
Browse files Browse the repository at this point in the history
  • Loading branch information
themiswang authored Mar 8, 2024
1 parent ffe8624 commit 8c3fc52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@

- (void)updateRolloutsStateToPersistenceWithRollouts:(NSData *_Nonnull)rollouts
reportID:(NSString *_Nonnull)reportID;
- (void)debugLog:(NSString *_Nonnull)messages;
- (void)debugLogWithMessage:(NSString *_Nonnull)message;
@end
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ - (void)updateRolloutsStateToPersistenceWithRollouts:(NSData *_Nonnull)rollouts
});
}

- (void)debugLog:(NSString *_Nonnull)messages {
FIRCLSDebugLog(messages);
- (void)debugLogWithMessage:(NSString *_Nonnull)message {
FIRCLSDebugLog(message);
}

@end

0 comments on commit 8c3fc52

Please sign in to comment.