Skip to content

Commit

Permalink
fix: log message
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierChanth committed Dec 20, 2024
1 parent 0dd3d39 commit 8e73faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/atclient/src/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ int atclient_connection_connect(atclient_connection *ctx, const char *host, cons

ret = atclient_tls_socket_connect(&ctx->_socket, host, port);
if (ret != 0) {
atlogger_log(TAG, ATLOGGER_LOGGING_LEVEL_ERROR, "failed to connect to %s:%u", host, port);
atlogger_log(TAG, ATLOGGER_LOGGING_LEVEL_ERROR, "failed to connect to %s:%u\n", host, port);
return ret;
}

Expand Down

0 comments on commit 8e73faf

Please sign in to comment.