Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
feat(sample-application): enable logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland Mostoha committed Feb 20, 2018
1 parent 1259926 commit 952d0c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
import android.util.Log;
import android.widget.Toast;

import com.emarsys.core.util.log.EMSLoggerSettings;
import com.emarsys.mobileengage.MobileEngage;
import com.emarsys.mobileengage.config.MobileEngageConfig;
import com.emarsys.mobileengage.experimental.MobileEngageFeature;
import com.emarsys.mobileengage.iam.InAppMessageHandler;

import org.json.JSONObject;

import java.util.Map;

public class SampleApplication extends Application implements InAppMessageHandler {

private static final String TAG = "SampleApplication";

@Override
public void onCreate() {
super.onCreate();
EMSLoggerSettings.enableLoggingForAllTopics();
Log.i(TAG, "Core version: " + com.emarsys.core.BuildConfig.VERSION_NAME);
Log.i(TAG, "MobileEngage version: " + com.emarsys.mobileengage.BuildConfig.VERSION_NAME);
MobileEngageConfig config = new MobileEngageConfig.Builder()
Expand Down

0 comments on commit 952d0c9

Please sign in to comment.