From 4adf696c650d14eec1d90f71d67e1613b3101b42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Henry?= Date: Wed, 20 Feb 2019 14:44:07 +0100 Subject: [PATCH] P2p: improve logging level --- src/lib_p2p/p2p_fd.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_p2p/p2p_fd.ml b/src/lib_p2p/p2p_fd.ml index 980683695..b1a6c241b 100644 --- a/src/lib_p2p/p2p_fd.ml +++ b/src/lib_p2p/p2p_fd.ml @@ -47,7 +47,7 @@ type t = { (* we use a prefix ' cnx:' that allows easy grepping in the log to lookup everything related to a particular connection. *) let log t fmt = - Format.kasprintf (fun s -> Log.log_info "cnx:%d:%s" t.id s) fmt + Format.kasprintf (fun s -> Log.debug "cnx:%d:%s" t.id s) fmt let create = let counter = ref 0 in