How to see Debug logging in firebase?

心已入冬 提交于 2019-12-24 06:00:11

问题


I am using firebase version 11.0.1

I try this code

FirebaseDatabase.getInstance().setLogLevel(Logger.Level.DEBUG);

but it doesn't work! syntax error.. I click on level class and this is what I see??? package com.google.firebase.database;

public interface Logger {
    public static enum Level {
        zzbYY,
        zzbYZ,
        zzbZa,
        zzbZb,
        zzbZc;

        private Level() {
        }
    }
}

Is deprecated? How to do it?

来源:https://stackoverflow.com/questions/44767654/how-to-see-debug-logging-in-firebase

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!