I am using multiple Crashlytics.log()
commands, for example:
Crashlytics.log("This is message 1");
Crashlytics.log("This is message 2");
But when there is a crash in the dashboard I can only see "This is message 1" but not "This is message 2". Does Crashlytics log only show the first log not any subsequent log after that or am I doing anything wrong? How can I use multiple Crashlytics.log()
commands.