-
Notifications
You must be signed in to change notification settings - Fork 653
Closed
Description
[READ] Step 1: Are you in the right place?
Issues filed here should be about bugs in the code in this repository.
If you have a general question, need help debugging, or fall into some
other category use one of these other channels:
- For general technical questions, post a question on StackOverflow
with the firebase tag. - For general Firebase discussion, use the firebase-talk
google group. - For help troubleshooting your application that does not fall under one
of the above categories, reach out to the personalized
Firebase support channel.
[REQUIRED] Step 2: Describe your environment
- Android Studio version: 4.2.1
- Firebase Component: crashlytics
- Component version: 18.1.0
[REQUIRED] Step 3: Describe the problem
Custom logs does not work, and I can not see them in the website.
Steps to reproduce:
What happened? How can we make the problem occur?
This could be a description, log/console output, etc.
Relevant Code:
var numberOfPhotoDownload = 0
var didAllPhotosDownloadSuccessfully = true
if (photosToDownloadChunks.size > 0) {
FirebaseCrashlytics.getInstance().recordException(Exception("API : Get Photos"))
FirebaseCrashlytics.getInstance().log("API : Get Photos")
for (chunck in photosToDownloadChunks){
for (photo in chunck){
numberOfPhotoDownload++
}
}
FirebaseCrashlytics.getInstance().log("Number of photos to download: $numberOfPhotoDownload")
var count = 1
for (chunck in photosToDownloadChunks){
for (photo in chunck){
FirebaseCrashlytics.getInstance().log("Photo number #${count} " + "Photo_filename: ${photo.fileName}")
count++
}
}
}
// TODO(you): code here to reproduce the problem
