From 473ac2001774ec6913b3c73774bd6613b25f5034 Mon Sep 17 00:00:00 2001 From: Jaakko Korhonen Date: Mon, 10 Sep 2018 14:56:04 +0300 Subject: [PATCH] Removed cellular PIN code print from debug log. --- features/cellular/easy_cellular/CellularConnectionFSM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/cellular/easy_cellular/CellularConnectionFSM.cpp b/features/cellular/easy_cellular/CellularConnectionFSM.cpp index 43aa21dc1e..96adee03c3 100644 --- a/features/cellular/easy_cellular/CellularConnectionFSM.cpp +++ b/features/cellular/easy_cellular/CellularConnectionFSM.cpp @@ -177,7 +177,7 @@ bool CellularConnectionFSM::open_sim() if (state == CellularSIM::SimStatePinNeeded) { if (strlen(_sim_pin)) { - tr_info("SIM pin required, entering pin: %s", _sim_pin); + tr_info("SIM pin required, entering pin"); nsapi_error_t err = _sim->set_pin(_sim_pin); if (err) { tr_error("SIM pin set failed with: %d, bailing out...", err);