Max has submitted this change and it was merged. ( 
https://gerrit.osmocom.org/12854 )

Change subject: Stream client: report reconnection event as INFO
......................................................................

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
---
M src/stream.c
1 file changed, 2 insertions(+), 2 deletions(-)

Approvals:
  Jenkins Builder: Verified
  Harald Welte: Looks good to me, approved



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 @@
        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;

--
To view, visit https://gerrit.osmocom.org/12854
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: Ic96430a9e9294e72de23b0bbacdbf3e99a453f1d
Gerrit-Change-Number: 12854
Gerrit-PatchSet: 2
Gerrit-Owner: Max <[email protected]>
Gerrit-Reviewer: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder (1000002)
Gerrit-Reviewer: Max <[email protected]>
Gerrit-Reviewer: osmith <[email protected]>

Reply via email to