Tone down logging a bit.

This commit is contained in:
Moxie Marlinspike 2014-02-24 02:12:41 -08:00
parent 2ab8c77748
commit 377a332789

View File

@ -56,7 +56,7 @@ public class GcmIntentService extends GCMBaseIntentService {
protected void onMessage(Context context, Intent intent) { protected void onMessage(Context context, Intent intent) {
try { try {
String data = intent.getStringExtra("message"); String data = intent.getStringExtra("message");
Log.w("GcmIntentService", "GCM message: " + data); Log.w("GcmIntentService", "GCM message...");
if (Util.isEmpty(data)) if (Util.isEmpty(data))
return; return;