GDTCORConsoleLogger.m 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright 2018 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 "GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORConsoleLogger.h"
  17. volatile NSInteger GDTCORConsoleLoggerLoggingLevel = GDTCORLoggingLevelErrors;
  18. /** The console logger prefix. */
  19. static NSString *kGDTCORConsoleLogger = @"[GoogleDataTransport]";
  20. NSString *GDTCORMessageCodeEnumToString(GDTCORMessageCode code) {
  21. return [[NSString alloc] initWithFormat:@"I-GDTCOR%06ld", (long)code];
  22. }
  23. void GDTCORLog(GDTCORMessageCode code, GDTCORLoggingLevel logLevel, NSString *format, ...) {
  24. // Don't log anything in not debug builds.
  25. #if !NDEBUG
  26. if (logLevel >= GDTCORConsoleLoggerLoggingLevel) {
  27. NSString *logFormat = [NSString stringWithFormat:@"%@[%@] %@", kGDTCORConsoleLogger,
  28. GDTCORMessageCodeEnumToString(code), format];
  29. va_list args;
  30. va_start(args, format);
  31. NSLogv(logFormat, args);
  32. va_end(args);
  33. }
  34. #endif // !NDEBUG
  35. }
  36. void GDTCORLogAssert(
  37. BOOL wasFatal, NSString *_Nonnull file, NSInteger line, NSString *_Nullable format, ...) {
  38. // Don't log anything in not debug builds.
  39. #if !NDEBUG
  40. GDTCORMessageCode code = wasFatal ? GDTCORMCEFatalAssertion : GDTCORMCEGeneralError;
  41. NSString *logFormat =
  42. [NSString stringWithFormat:@"%@[%@] (%@:%ld) : %@", kGDTCORConsoleLogger,
  43. GDTCORMessageCodeEnumToString(code), file, (long)line, format];
  44. va_list args;
  45. va_start(args, format);
  46. NSLogv(logFormat, args);
  47. va_end(args);
  48. #endif // !NDEBUG
  49. }