We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent5254958 commit4b8f285Copy full SHA for 4b8f285
src/backend/utils/init/postinit.c
@@ -234,7 +234,7 @@ PerformAuthentication(Port *port)
234
#ifdefUSE_SSL
235
if (port->ssl)
236
ereport(LOG,
237
-(errmsg("replication connection authorized: user=%s SSL(protocol:%s, cipher:%s) enabled",
+(errmsg("replication connection authorized: user=%s SSL enabled(protocol=%s, cipher=%s)",
238
port->user_name,SSL_get_version(port->ssl),SSL_get_cipher(port->ssl))));
239
else
240
#endif
@@ -247,7 +247,7 @@ PerformAuthentication(Port *port)
247
248
249
250
-(errmsg("connection authorized: user=%s database=%s SSL(protocol:%s, cipher:%s) enabled",
+(errmsg("connection authorized: user=%s database=%s SSL enabled(protocol=%s, cipher=%s)",
251
port->user_name,port->database_name,SSL_get_version(port->ssl),SSL_get_cipher(port->ssl))));
252
253