Improve some logs
This commit is contained in:
parent
74b4adb423
commit
c5de636bb1
1 changed files with 8 additions and 8 deletions
|
@ -729,11 +729,11 @@ public class LinphoneManager implements LinphoneListener {
|
|||
}
|
||||
|
||||
public void globalState(final LinphoneCore lc, final GlobalState state, final String message) {
|
||||
Log.i("new state [",state,"]");
|
||||
Log.i("New global state [",state,"]");
|
||||
}
|
||||
|
||||
public void registrationState(final LinphoneCore lc, final LinphoneProxyConfig proxy,final RegistrationState state,final String message) {
|
||||
Log.i("new state ["+state+"]");
|
||||
Log.i("New registration state ["+state+"]");
|
||||
}
|
||||
|
||||
private int savedMaxCallWhileGsmIncall;
|
||||
|
@ -783,7 +783,7 @@ public class LinphoneManager implements LinphoneListener {
|
|||
|
||||
@SuppressLint("Wakelock")
|
||||
public void callState(final LinphoneCore lc,final LinphoneCall call, final State state, final String message) {
|
||||
Log.i("new state [",state,"]");
|
||||
Log.i("New call state [",state,"]");
|
||||
if (state == State.IncomingReceived && !call.equals(lc.getCurrentCall())) {
|
||||
if (call.getReplacedCall()!=null){
|
||||
// attended transfer
|
||||
|
|
Loading…
Reference in a new issue