FIRInstallationsLogger.m 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright 2019 Google
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #import "FirebaseInstallations/Source/Library/FIRInstallationsLogger.h"
  17. FIRLoggerService kFIRLoggerInstallations = @"[FirebaseInstallations]";
  18. // FIRInstallationsAPIService.m
  19. NSString *const kFIRInstallationsMessageCodeSendAPIRequest = @"I-FIS001001";
  20. NSString *const kFIRInstallationsMessageCodeAPIRequestNetworkError = @"I-FIS001002";
  21. NSString *const kFIRInstallationsMessageCodeAPIRequestResponse = @"I-FIS001003";
  22. NSString *const kFIRInstallationsMessageCodeUnexpectedAPIRequestResponse = @"I-FIS001004";
  23. NSString *const kFIRInstallationsMessageCodeParsingAPIResponse = @"I-FIS001005";
  24. NSString *const kFIRInstallationsMessageCodeAPIResponseParsingInstallationFailed = @"I-FIS001006";
  25. NSString *const kFIRInstallationsMessageCodeAPIResponseParsingInstallationSucceed = @"I-FIS001007";
  26. NSString *const kFIRInstallationsMessageCodeAPIResponseParsingAuthTokenFailed = @"I-FIS001008";
  27. NSString *const kFIRInstallationsMessageCodeAPIResponseParsingAuthTokenSucceed = @"I-FIS001009";
  28. // FIRInstallationsIDController.m
  29. NSString *const kFIRInstallationsMessageCodeNewGetInstallationOperationCreated = @"I-FIS002000";
  30. NSString *const kFIRInstallationsMessageCodeNewGetAuthTokenOperationCreated = @"I-FIS002001";
  31. NSString *const kFIRInstallationsMessageCodeNewDeleteInstallationOperationCreated = @"I-FIS002002";
  32. NSString *const kFIRInstallationsMessageCodeInvalidFirebaseConfiguration = @"I-FIS002003";
  33. NSString *const kFIRInstallationsMessageCodeCorruptedStoredInstallation = @"I-FIS002004";
  34. // FIRInstallationsStoredItem.m
  35. NSString *const kFIRInstallationsMessageCodeInstallationCoderVersionMismatch = @"I-FIS003000";
  36. // FIRInstallationsStoredAuthToken.m
  37. NSString *const kFIRInstallationsMessageCodeAuthTokenCoderVersionMismatch = @"I-FIS004000";
  38. // FIRInstallationsStoredIIDCheckin.m
  39. NSString *const kFIRInstallationsMessageCodeIIDCheckinCoderVersionMismatch = @"I-FIS007000";
  40. NSString *const kFIRInstallationsMessageCodeIIDCheckinFailedToDecode = @"I-FIS007001";
  41. // FIRInstallations.m
  42. NSString *const kFIRInstallationsMessageCodeInvalidFirebaseAppOptions = @"I-FIS008000";