diff options
author | David Barksdale <amatus@amat.us> | 2017-12-29 10:26:05 -0600 |
---|---|---|
committer | David Barksdale <amatus@amat.us> | 2017-12-29 10:26:05 -0600 |
commit | 81ea73fcf38405a714d949189ed0ec6bc5b6bea6 (patch) | |
tree | 133b4dafa6ef42761426d7d90414475c75d1b35b /src/set | |
parent | dd937091d5d071df0d7d7fc6778ddf572a6118d1 (diff) |
Demote some log messages
Diffstat (limited to 'src/set')
-rw-r--r-- | src/set/gnunet-service-set_union.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/set/gnunet-service-set_union.c b/src/set/gnunet-service-set_union.c index 730124495..9586dcf27 100644 --- a/src/set/gnunet-service-set_union.c +++ b/src/set/gnunet-service-set_union.c @@ -364,7 +364,7 @@ fail_union_operation (struct Operation *op) struct GNUNET_MQ_Envelope *ev; struct GNUNET_SET_ResultMessage *msg; - LOG (GNUNET_ERROR_TYPE_ERROR, + LOG (GNUNET_ERROR_TYPE_WARNING, "union operation failed\n"); ev = GNUNET_MQ_msg (msg, GNUNET_MESSAGE_TYPE_SET_RESULT); msg->result_status = htons (GNUNET_SET_STATUS_FAILURE); @@ -1404,7 +1404,7 @@ send_client_done (void *cls) } if (PHASE_DONE != op->state->phase) { - LOG (GNUNET_ERROR_TYPE_ERROR, + LOG (GNUNET_ERROR_TYPE_WARNING, "union operation failed\n"); ev = GNUNET_MQ_msg (rm, GNUNET_MESSAGE_TYPE_SET_RESULT); rm->result_status = htons (GNUNET_SET_STATUS_FAILURE); |