Why the only way to log something is FirebaseCrashlytics.getInstance().log(message) without tag and priority ? If we look the implementation, we see that this method calls the CrashlyticsCore method
public void log(String msg) { this.doLog(3, "FirebaseCrashlytics", msg); }
and this method sets always a the Debug priority (3) and the tag "FirebaseCrashlytics" which is not really readable in the firebase crash console.
Is this a bug ?
Thank you