简体   繁体   English

Logcat 只生成 FA 日志

[英]Logcat only produce FA logs

I am working my own android project for a long time.我在自己的 android 项目上工作了很长时间。 Until today, everything was working so fine but today suprisingly I only get直到今天,一切都很好,但今天令人惊讶的是我只得到

03-07 17:14:51.748 20484-14871/com.google.android.gms V/FA-SVC: 03-07 17:14:51.748 20484-14871/com.google.android.gms V/FA-SVC:

03-07 17:17:12.856 20484-15950/com.google.android.gms V/FA-SVC: Scheduling task with Gcm. Time2122773
03-07 17:17:12.869 20484-15950/com.google.android.gms V/FA-SVC: Background event processing time, ms: 104
03-07 17:17:13.892 15705-15939/-- D/FA: Logging event (FE): ad_impression(_ai), Bundle[{firebase_event_origin(_o)=am, firebase_screen_class(_sc)=MainActivity, firebase_screen_id(_si)=--, ad_event_id(_aeid)=--}]

and so on...等等...

protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Log.d("log", "log");

and this is my MainActivity which is working at first.这是我的 MainActivity 开始工作。 I put a Log to test logcat but I cant see any log in logcat.我放了一个日志来测试 logcat,但在 logcat 中看不到任何日志。 Did anyone have something like this?有没有人有这样的事情?

/FA indicates these are FirebaseAnalytics messages. /FA 表示这些是 FirebaseAnalytics 消息。 Firebase tries to do a lot automatically for you, and that includes some recommended logging. Firebase 会尝试自动为您做很多事情,其中​​包括一些推荐的日志记录。 I suspect you recently added the Firebase and the related plugin to your app.我怀疑您最近将 Firebase 和相关插件添加到您的应用中。

You customize this logging if you like.如果您愿意,您可以自定义此日志记录。 Maybe you just want to turn it off?也许你只是想把它关掉? Anyway, it doesn't appear anything is wrong that you need to worry about.无论如何,看起来没有任何问题需要您担心。

Documentation for customizing the FA logs are: https://firebase.google.com/docs/analytics/android/events自定义 FA 日志的文档是: https : //firebase.google.com/docs/analytics/android/events

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM