From 37914e0228536457bb40dfdd30e4a5f589b8ba7a Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Tue, 17 Sep 2019 13:16:55 +0200 Subject: asdf --- src/main.c | 6 +++--- src/modem.h | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index f4318b9..bdc58e2 100644 --- a/src/main.c +++ b/src/main.c @@ -218,7 +218,7 @@ void dialup_server(struct prog_params params) //Serial port is reopened for every new connection to reset modem over DTR int fd = open (params.serial_port, O_RDWR | O_NOCTTY | O_SYNC); if (fd < 0) { - PRINT_ERROR("Failed to open serial port"); + LOGPRINTF(_LOG_ERROR, "Failed to open serial port"); return; } @@ -228,12 +228,12 @@ void dialup_server(struct prog_params params) int ret = modem_accept_wait(fd); if(ret) { - printf("Modem error %i\n", ret); + LOGPRINTF(_LOG_NOTE, "Connection not established: %i", ret); close(fd); break; } - DEBUG_PRINTF("Connection\n"); + LOGPRINTF(_LOG_NOTE,"Connection"); modem_run(fd, params.run_argc, params.run_argv); close (fd); diff --git a/src/modem.h b/src/modem.h index e5aea4e..aa43d25 100644 --- a/src/modem.h +++ b/src/modem.h @@ -12,6 +12,7 @@ #include #include "misc.h" +#include "log.h" #define _AT "AT\r\n" #define _AT_ANSWER "ATA\r\n" -- cgit v1.2.3