Skip to content

Commit 4457e36

Browse files
Mirela ChiricaAri Parkkila
authored andcommitted
Logging compile fix
1 parent 22e7fbd commit 4457e36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

features/cellular/framework/AT/ATHandler.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,7 @@ void ATHandler::cmd_start(const char* cmd)
960960

961961
void ATHandler::write_int(int32_t param)
962962
{
963-
log_debug("write_int: %d", param);
963+
tr_debug("write_int: %d", param);
964964
// do common checks before sending subparameter
965965
if (check_cmd_send() == false) {
966966
return;
@@ -982,7 +982,7 @@ void ATHandler::write_int(int32_t param)
982982

983983
void ATHandler::write_string(const char* param, bool useQuotations)
984984
{
985-
log_debug("write_string: %s, %d", param, useQuotations);
985+
tr_debug("write_string: %s, %d", param, useQuotations);
986986
// do common checks before sending subparameter
987987
if (check_cmd_send() == false) {
988988
return;

0 commit comments

Comments
 (0)