add flavor to toasted got-fcm message

So I can tell the apps apart
This commit is contained in:
Eric House 2019-02-02 22:39:57 -08:00
parent e98519ea38
commit 74cf4b0974

View file

@ -69,8 +69,8 @@ public class FBMService extends FirebaseMessagingService {
JSONArray msgs64 = new JSONArray( value ); JSONArray msgs64 = new JSONArray( value );
String[] strs64 = new String[msgs64.length()]; String[] strs64 = new String[msgs64.length()];
if ( toastFCM ) { if ( toastFCM ) {
DbgUtils.showf( this, "%s.onMessageReceived(): got %d msgs", DbgUtils.showf( this, "%s-%s.onMessageReceived(): got %d msgs",
TAG, strs64.length ); BuildConfig.FLAVOR, TAG, strs64.length );
} }
for ( int ii = 0; ii < strs64.length; ++ii ) { for ( int ii = 0; ii < strs64.length; ++ii ) {