From 1a357720b56386c0d42c3a6dccfff11f46cf27e7 Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 7 Feb 2019 12:15:50 +0100 Subject: Stream client: report reconnection event as INFO This helps to avoid unnecessary debug output in reconnection logic tests in follow-up patches. Change-Id: Ic96430a9e9294e72de23b0bbacdbf3e99a453f1d --- src/stream.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stream.c') diff --git a/src/stream.c b/src/stream.c index 7b97d2a..1880e25 100644 --- a/src/stream.c +++ b/src/stream.c @@ -172,11 +172,11 @@ void osmo_stream_cli_reconnect(struct osmo_stream_cli *cli) osmo_stream_cli_close(cli); if (cli->reconnect_timeout < 0) { - LOGSCLI(cli, LOGL_DEBUG, "not reconnecting, disabled.\n"); + LOGSCLI(cli, LOGL_INFO, "not reconnecting, disabled.\n"); return; } - LOGSCLI(cli, LOGL_DEBUG, "retrying in %d seconds...\n", + LOGSCLI(cli, LOGL_INFO, "retrying in %d seconds...\n", cli->reconnect_timeout); osmo_timer_schedule(&cli->timer, cli->reconnect_timeout, 0); cli->state = STREAM_CLI_STATE_CONNECTING; -- cgit v1.2.3