Log version on start.

This commit is contained in:
Michael Jumper 2012-10-03 10:15:20 -07:00
parent a0fde0a4e8
commit 178ae68b12

View File

@ -318,6 +318,9 @@ int main(int argc, char* argv[]) {
/* Open log as early as we can */ /* Open log as early as we can */
openlog(NULL, LOG_PID, LOG_DAEMON); openlog(NULL, LOG_PID, LOG_DAEMON);
/* Log start */
guacd_log_info("Guacamole proxy daemon (guacd) version " VERSION);
/* Get addresses for binding */ /* Get addresses for binding */
if ((retval = getaddrinfo(listen_address, listen_port, if ((retval = getaddrinfo(listen_address, listen_port,
&hints, &addresses))) { &hints, &addresses))) {