-
Notifications
You must be signed in to change notification settings - Fork 624
Update logging flag to match recommended style and execution. #2392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Coverage ReportAffected SDKs
Test Logs
NotesHTML coverage reports can be produced locally with Head commit (d4b0c9ce) is created by Prow via merging commits: 29e73e5 c9b443d. |
Binary Size ReportAffected SDKs
Test Logs
NotesHead commit (d4b0c9ce) is created by Prow via merging commits: 29e73e5 c9b443d. |
/test smoke-tests |
firebase-ml-modeldownloader/api.txt
Outdated
@@ -61,7 +61,7 @@ package com.google.firebase.ml.modeldownloader { | |||
method @NonNull public com.google.android.gms.tasks.Task<com.google.firebase.ml.modeldownloader.CustomModel> getModel(@NonNull String, @NonNull com.google.firebase.ml.modeldownloader.DownloadType, @Nullable com.google.firebase.ml.modeldownloader.CustomModelDownloadConditions); | |||
method public long getModelDownloadId(@NonNull String); | |||
method @NonNull public com.google.android.gms.tasks.Task<java.util.Set<com.google.firebase.ml.modeldownloader.CustomModel>> listDownloadedModels(); | |||
method public void setStatsCollectionEnabled(boolean); | |||
method public void setDataCollectionMlDownloaderState(boolean); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the approved naming pattern is set${product}CollectionEnabled(Boolean)
cc @VinayGuthal to confirm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking through - your recommendation is the format used by crashlytics and performance - so updated to match.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vkryachko is right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done - updated method to setModelDownloaderCollectionEnabled(Boolean) and added null edges to reset to default firebase level data collection.
No description provided.