Skip to content

Commit 1443ac5

Browse files
authored
Log FIS auth token instead of displaying it in the test app. (#2039)
1 parent 690d119 commit 1443ac5

File tree

1 file changed

+5
-1
lines changed
  • firebase-config/bandwagoner/src/main/java/com/googletest/firebase/remoteconfig/bandwagoner

1 file changed

+5
-1
lines changed

firebase-config/bandwagoner/src/main/java/com/googletest/firebase/remoteconfig/bandwagoner/ApiFragment.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,11 @@ public View onCreateView(
110110
}
111111

112112
if (installationAuthTokenTask.isSuccessful()) {
113-
apiCallResultsText.setText(installationAuthTokenTask.getResult().getToken());
113+
Log.i(
114+
TAG,
115+
String.format(
116+
"Installation authentication token: %s",
117+
installationAuthTokenTask.getResult().getToken()));
114118
} else {
115119
Log.e(
116120
TAG,

0 commit comments

Comments
 (0)