mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #10825 from kivaisan/fix_plmn_debug_trace
Cellular: Fix PLMN debug trace for IARpull/10869/head
commit
363ad8ab14
|
@ -167,7 +167,7 @@ bool CellularStateMachine::open_sim()
|
|||
|
||||
if (sim_ready) {
|
||||
_cb_data.error = _network.set_registration(_plmn);
|
||||
tr_debug("STM: set_registration: %d, plmn: %s", _cb_data.error, _plmn);
|
||||
tr_debug("STM: set_registration: %d, plmn: %s", _cb_data.error, _plmn ? _plmn : "NULL");
|
||||
if (_cb_data.error) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue