Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: talk/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m

Issue 1241283004: iOS: Move AppRTC logging methods to public headers. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: talk/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m
diff --git a/talk/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m b/talk/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m
index 01d666d82e825c9da70f4855566e4c6d6b2b7bac..f7bb211158c810b8b136a2df0051460cab791e13 100644
--- a/talk/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m
+++ b/talk/examples/objc/AppRTCDemo/RTCICECandidate+JSON.m
@@ -27,7 +27,7 @@
#import "RTCICECandidate+JSON.h"
-#import "ARDLogging.h"
+#import "RTCLogging.h"
static NSString const *kRTCICECandidateTypeKey = @"type";
static NSString const *kRTCICECandidateTypeValue = @"candidate";
@@ -58,7 +58,7 @@ static NSString const *kRTCICECandidateSdpKey = @"candidate";
options:NSJSONWritingPrettyPrinted
error:&error];
if (error) {
- ARDLog(@"Error serializing JSON: %@", error);
+ RTCLogError(@"Error serializing JSON: %@", error);
return nil;
}
return data;

Powered by Google App Engine
This is Rietveld 408576698