Text message status log should not be treated as an error log + formatting

This commit is contained in:
Gautier Pelloux-Prayer 2014-07-29 14:17:28 +02:00
parent 3ab3ed3632
commit 7dc23b0cc1
2 changed files with 139 additions and 139 deletions

View file

@ -646,7 +646,7 @@ public class ChatFragment extends Fragment implements OnClickListener, LinphoneC
BubbleChat bubble = displayMessage(newId, messageToSend, System.currentTimeMillis(), false, State.InProgress, messagesLayout);
bubble.setNativeMessageObject(chatMessage);
Log.e("Sent message current status: " + chatMessage.getStatus());
Log.i("Sent message current status: " + chatMessage.getStatus());
scrollToEnd();
} else if (!isNetworkReachable && LinphoneActivity.isInstanciated()) {
LinphoneActivity.instance().displayCustomToast(getString(R.string.error_network_unreachable), Toast.LENGTH_LONG);

View file

@ -811,7 +811,7 @@ public class LinphoneManager implements LinphoneCoreListener {
}
private synchronized void allowSIPCalls() {
if (savedMaxCallWhileGsmIncall == 0) {
Log.w("SIP calls are already allowed as no GSM call knowned to be running");
Log.w("SIP calls are already allowed as no GSM call known to be running");
return;
}
mLc.setMaxCalls(savedMaxCallWhileGsmIncall);