Reputation: 4365
I have seen any logs written in WTF_LOG(Media,...) in chrome code. after lot of code search I didn't any way to enable and take these logs for android platform, I find a useful link on chromium official site, but there is not information for android platform https://www.chromium.org/for-testers/enable-logging
I have the chrome build able code for android platform . I want to check these WTF_LOG
Upvotes: 3
Views: 691
Reputation: 1071
As per comment in src/third_party/WebKit/Source/wtf/Assertion.h:259
WTF_LOG has been deprecated, and it should be replaced with DVLOG() or VLOG()
Upvotes: 1