diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-04-18 02:21:03 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-04-18 02:21:03 +0200 |
commit | 294730cf014e3ce74f16d886516e8fc02df3bd18 (patch) | |
tree | a4bd4ad27525aac70f21722ece322e549a787fb1 /src | |
parent | a98e13122657c22781f248b48d33088f906e47d0 (diff) |
fix #6769, plus some related configuration issues and better documentation
Diffstat (limited to 'src')
-rw-r--r-- | src/exchange/taler-exchange-httpd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index 917b686e0..a0e9de8a4 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -1729,8 +1729,8 @@ main (int argc, if ( (-1 == flags) && (EBADF == errno) ) { - fprintf (stderr, - "Bad listen socket passed, ignored\n"); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + "Bad listen socket passed, ignored\n"); fh = -1; } flags |= FD_CLOEXEC; @@ -1740,6 +1740,8 @@ main (int argc, flags)) ) GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "fcntl"); + GNUNET_log (GNUNET_ERROR_TYPE_INFO, + "Successfully obtained listen socket from hypervisor\n"); } /* initialize #internal_key_state with an RC of 1 */ |