diff options
| author | Christian Grothoff <christian@grothoff.org> | 2023-03-05 01:18:08 +0100 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2023-03-05 01:18:08 +0100 | 
| commit | 70645cbb1b6065c359ce6fc989f7b143dcd5949e (patch) | |
| tree | eaee908328a50efc5e114309a71af608e16c7d7e /src/exchange/taler-exchange-httpd.c | |
| parent | e2185233f6a0a89bfd53817ac7366c536fb5e0a2 (diff) | |
fix permissions, default to UNIX, improve logging
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
| -rw-r--r-- | src/exchange/taler-exchange-httpd.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index 5b1adb59..c88ddd7c 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -1939,6 +1939,9 @@ exchange_serve_process_config (void)        GNUNET_free (master_public_key_str);        return GNUNET_SYSERR;      } +    GNUNET_log (GNUNET_ERROR_TYPE_INFO, +                "Launching exchange with public key `%s'...\n", +                master_public_key_str);      GNUNET_free (master_public_key_str);    } @@ -1961,9 +1964,6 @@ exchange_serve_process_config (void)                          &TEH_attribute_key.hash);      GNUNET_free (attr_enc_key_str);    } -  GNUNET_log (GNUNET_ERROR_TYPE_INFO, -              "Launching exchange with public key `%s'...\n", -              GNUNET_p2s (&TEH_master_public_key.eddsa_pub));    if (NULL ==        (TEH_plugin = TALER_EXCHANGEDB_plugin_load (TEH_cfg)))  | 
