Skip to content

Renaming debug tags to match class name #3325

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

Merged
merged 2 commits into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

/** Class that handles updateApp functionality for AABs in {@link FirebaseAppDistribution}. */
class AabUpdater {
private static final String TAG = "UpdateAabClient:";
private static final String TAG = "AabUpdater:";

private final FirebaseAppDistributionLifecycleNotifier lifecycleNotifier;
private final HttpsUrlConnectionFactory httpsUrlConnectionFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

/** Class that handles installing APKs in {@link FirebaseAppDistribution}. */
class ApkInstaller {
private static final String TAG = "ApkInstallClient:";
private static final String TAG = "ApkInstaller:";
private final FirebaseAppDistributionLifecycleNotifier lifeCycleNotifier;

@GuardedBy("installTaskLock")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
class ApkUpdater {

private static final int UPDATE_INTERVAL_MS = 250;
private static final String TAG = "UpdateApkClient:";
private static final String TAG = "ApkUpdater:";
private static final String REQUEST_METHOD_GET = "GET";
private static final String DEFAULT_APK_FILE_NAME = "downloaded_release.apk";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

/** Class that handles signing in the tester */
class TesterSignInManager {
private static final String TAG = "TesterSignIn:";
private static final String TAG = "TesterSignInManager:";
private static final String SIGNIN_REDIRECT_URL =
"https://appdistribution.firebase.google.com/pub/testerapps/%s/installations/%s/buildalerts?appName=%s&packageName=%s";

Expand Down