Logging compile fix

pull/6082/head
Mirela Chirica 2018-02-20 10:56:23 +02:00 committed by Ari Parkkila
parent 22e7fbd7e8
commit 4457e361ac
1 changed files with 2 additions and 2 deletions

View File

@ -960,7 +960,7 @@ void ATHandler::cmd_start(const char* cmd)
void ATHandler::write_int(int32_t param)
{
log_debug("write_int: %d", param);
tr_debug("write_int: %d", param);
// do common checks before sending subparameter
if (check_cmd_send() == false) {
return;
@ -982,7 +982,7 @@ void ATHandler::write_int(int32_t param)
void ATHandler::write_string(const char* param, bool useQuotations)
{
log_debug("write_string: %s, %d", param, useQuotations);
tr_debug("write_string: %s, %d", param, useQuotations);
// do common checks before sending subparameter
if (check_cmd_send() == false) {
return;