Hello. I noticed that the following command doesn't leave connection log in log file.
> psql "host=localhost options=-c\ log_connections=on" The reason is we log connections before the options is processed. We need to move the code from BackendInitialize to InitPostgres where that options are processed if we want that option to work. However, I'm not sure we can delay connection-log until that point, since that movement changes the meaning of the log message. Another option is to log connections in InitPostgres if not yet and log_connections is turned on by connection options. Futher another option is we don't make it work and write in the document that it doesn't work. (I didn't find that, but...) Opinions and suggestions are welcome. regards. -- Kyotaro Horiguchi NTT Open Source Software Center