标签: android admob
广告在我的添加输出中输出了大量数据到logcat。如何阻止广告打印到logcat?
logcat
答案 0 :(得分:2)
我发现在Eclipse中最有效的过滤器可以过滤掉不需要的消息,即使应用程序生成的消息也是:
^(?!.*(text_to_filter_out_here)).*$
希望这有帮助。