Skip to content

Commit

Permalink
director: Log whether connection is synced when it's being disconnected.
Browse files Browse the repository at this point in the history
  • Loading branch information
sirainen committed Nov 28, 2017
1 parent 218de87 commit 8eb9cba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/director/director-connection.c
Expand Up @@ -2033,6 +2033,8 @@ director_connection_log_disconnect(struct director_connection *conn, int err,
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));
}
Expand Down

0 comments on commit 8eb9cba

Please sign in to comment.