# HG changeset patch # User Timo Sirainen # Date 1511873847 -7200 # Node ID 281472b3bb209b9d206997a08054880e42491a26 # Parent dca05b22217b4f08c45dff4b77e2c028b99fdf89 director: Log whether connection is synced when it's being disconnected. diff -r dca05b22217b -r 281472b3bb20 src/director/director-connection.c --- a/src/director/director-connection.c Tue Nov 28 13:10:35 2017 +0200 +++ b/src/director/director-connection.c Tue Nov 28 14:57:27 2017 +0200 @@ -2033,6 +2033,8 @@ str_append(str, ", handshake ME not received"); else if (!conn->handshake_received) str_append(str, ", handshake DONE not received"); + if (conn->synced) + str_append(str, ", synced"); str_append_c(str, ')'); i_error("%s", str_c(str)); }