Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Shortened log tag PushPlugin_BackgroundActionButtonHandler to bring u… (
Browse files Browse the repository at this point in the history
#1703)

* Shortened log tag PushPlugin_BackgroundActionButtonHandler to bring under 23 character Lint requirement

* private static String LOG_TAG = "PushPlugin_BGActionBtn"

* Updated all LOG_TAGs to respect 23 character lint limitation
  • Loading branch information
mikepsinn authored and macdonst committed May 3, 2017
1 parent cebb640 commit dd70712
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import android.support.v4.app.RemoteInput;

public class BackgroundActionButtonHandler extends BroadcastReceiver implements PushConstants {
private static String LOG_TAG = "PushPlugin_BackgroundActionButtonHandler";
private static String LOG_TAG = "Push_BGActionButton";

@Override
public void onReceive(Context context, Intent intent) {
Expand Down
2 changes: 1 addition & 1 deletion src/android/com/adobe/phonegap/push/GCMIntentService.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
@SuppressLint("NewApi")
public class GCMIntentService extends GcmListenerService implements PushConstants {

private static final String LOG_TAG = "PushPlugin_GCMIntentService";
private static final String LOG_TAG = "Push_GCMIntentService";
private static HashMap<Integer, ArrayList<String>> messageMap = new HashMap<Integer, ArrayList<String>>();

public void setNotification(int notId, String message){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


public class PushHandlerActivity extends Activity implements PushConstants {
private static String LOG_TAG = "PushPlugin_PushHandlerActivity";
private static String LOG_TAG = "Push_HandlerActivity";

/*
* this activity will be started if the user touches a notification that we own.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.io.IOException;

public class PushInstanceIDListenerService extends InstanceIDListenerService implements PushConstants {
public static final String LOG_TAG = "PushPlugin_PushInstanceIDListenerService";
public static final String LOG_TAG = "Push_InstanceIDListener";

@Override
public void onTokenRefresh() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.io.IOException;

public class RegistrationIntentService extends IntentService implements PushConstants {
public static final String LOG_TAG = "PushPlugin_RegistrationIntentService";
public static final String LOG_TAG = "Push_RegistrationIntent";

public RegistrationIntentService() {
super(LOG_TAG);
Expand Down

0 comments on commit dd70712

Please sign in to comment.