Merge pull request #10825 from kivaisan/fix_plmn_debug_trace

Cellular: Fix PLMN debug trace for IAR
pull/10869/head
Anna Bridge 2019-06-19 15:04:24 +01:00 committed by GitHub
commit 363ad8ab14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}