Is there a way to debug a firebase database connection (Android)? I\'m using a really simple example (nothing big, just two listeners that listen on changes) that checks the
As @qbix said you can use
FirebaseDatabase.getInstance().setLogLevel(Logger.Level.INFO)
There are multiple levels logs, from firebase src:
package com.google.firebase.database;
public interface Logger {
public static enum Level {
DEBUG,
INFO,
WARN,
ERROR,
NONE;
private Level() {
}
}
}
More info at: MakinGIANTS - Post