From d8f336b88457a4727c512d4e8418a30a803b3504 Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Wed, 11 Oct 2017 17:03:28 +0200 Subject: [PATCH] Replace Mediastreamer log by Android log in LinphoneLauncherActivity --- src/android/org/linphone/LinphoneLauncherActivity.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/android/org/linphone/LinphoneLauncherActivity.java b/src/android/org/linphone/LinphoneLauncherActivity.java index 142d7e7f7..b9eebb084 100644 --- a/src/android/org/linphone/LinphoneLauncherActivity.java +++ b/src/android/org/linphone/LinphoneLauncherActivity.java @@ -25,9 +25,9 @@ import android.content.pm.ActivityInfo; import android.net.Uri; import android.os.Bundle; import android.os.Handler; +import android.util.Log; import org.linphone.assistant.RemoteProvisioningActivity; -import org.linphone.mediastream.Log; import org.linphone.mediastream.Version; import org.linphone.tutorials.TutorialLauncherActivity; @@ -158,12 +158,12 @@ public class LinphoneLauncherActivity extends Activity { } if (uriToResolve != null) { addressToCall = ContactsManager.getInstance().getAddressOrNumberForAndroidContact(getContentResolver(), uriToResolve); - Log.i("Intent has uri to resolve : " + uriToResolve.toString()); + Log.i("LinphoneLauncher", "Intent has uri to resolve : " + uriToResolve.toString()); uriToResolve = null; } if (addressToCall != null) { newIntent.putExtra("SipUriOrNumber", addressToCall); - Log.i("Intent has address to call : " + addressToCall); + Log.i("LinphoneLauncher", "Intent has address to call : " + addressToCall); addressToCall = null; } startActivity(newIntent);