I am using multiple Crashlytics.log() commands, for example:
Crashlytics.log()
Crashlytics.log(\"This is message 1\"); Crashlytics.log(\"This is message 2\");
The log message will be saved with the exception. So the Crashlytics.log("1"); wont do anything without an exception.
Crashlytics.log("1");
You should fire like that:
Crashlytics.log(Log.ERROR, "YourTAG", "YourMessage"); Crashlytics.logException(new Throwable("YourERROR"));