diff options
| author | Christian Grothoff <christian@grothoff.org> | 2018-09-17 11:27:36 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2018-11-04 10:48:32 +0100 | 
| commit | dce058af76abad983df4a671616fd76a11bd133f (patch) | |
| tree | 946ad748e4e8c19e1b12b8ce9e1ca2cbf97834f7 /src | |
| parent | ebc8ae68bee955d8df658afac85c9a0cbea716d0 (diff) | |
use log instead of fprintf
Diffstat (limited to 'src')
| -rw-r--r-- | src/exchange/taler-exchange-wirewatch.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c index 4a25773f..58697ba0 100644 --- a/src/exchange/taler-exchange-wirewatch.c +++ b/src/exchange/taler-exchange-wirewatch.c @@ -261,9 +261,9 @@ add_account_cb (void *cls,                                              ai->plugin_name);    if (NULL == wa->wire_plugin)    { -    fprintf (stderr, -             "Failed to load wire plugin for `%s'\n", -             ai->plugin_name); +    GNUNET_log (GNUNET_ERROR_TYPE_MESSAGE, +		"Failed to load wire plugin for `%s'\n", +		ai->plugin_name);      GNUNET_free (wa);      return;    } | 
