Skip to content
This repository was archived by the owner on Jul 25, 2024. It is now read-only.

Commit e8f4da9

Browse files
committed
Remove spammy logging in notifications
1 parent dc1ab37 commit e8f4da9

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

app/src/main/java/com/zulip/android/activities/LoginActivity.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,14 +331,12 @@ public void onClick(View v) {
331331
switch (v.getId()) {
332332
case R.id.google_sign_in_button:
333333
connectionProgressDialog.show();
334-
Toast.makeText(this, getString(R.string.logging_into_server, ZulipApp.get().getServerURI()), Toast.LENGTH_SHORT).show();
335334
setupGoogleSignIn();
336335
break;
337336
case R.id.zulip_login:
338337
if (!isInputValid()) {
339338
return;
340339
}
341-
Toast.makeText(this, getString(R.string.logging_into_server, ZulipApp.get().getServerURI()), Toast.LENGTH_SHORT).show();
342340
connectionProgressDialog.show();
343341

344342
AsyncLogin alog = new AsyncLogin(LoginActivity.this,

app/src/main/res/values/strings.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
<string name="signing_in">Signing in...</string>
4545
<string name="network_error">Network error</string>
4646
<string name="invalid_server_domain">Invalid server domain</string>
47-
<string name="logging_into_server">Logging into server: %s</string>
4847
<string name="password_required">Password required</string>
4948
<string name="username_required">Username required</string>
5049
<string name="server_domain_required">Server domain required</string>

0 commit comments

Comments
 (0)