From 32e5c5bb7c2c9127274247cb74cffa7345b04fad Mon Sep 17 00:00:00 2001 From: Sven-Haegar Koch Date: Sun, 22 Apr 2012 03:05:29 +0200 Subject: [PATCH] Silence SPTPS log messages, reduce them from DEBUG_ALWAYS to DEBUG_META. --- src/meta.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/meta.c b/src/meta.c index e286aea9..13c8495a 100644 --- a/src/meta.c +++ b/src/meta.c @@ -39,7 +39,7 @@ bool send_meta_sptps(void *handle, const char *buffer, size_t length) { abort(); } - logger(DEBUG_ALWAYS, LOG_DEBUG, "send_meta_sptps(%s, %p, %zu)", c->name, buffer, length); + logger(DEBUG_META, LOG_DEBUG, "send_meta_sptps(%s, %p, %zu)", c->name, buffer, length); buffer_add(&c->outbuf, buffer, length); event_add(&c->outevent, NULL); @@ -98,7 +98,7 @@ bool receive_meta_sptps(void *handle, uint8_t type, const char *data, uint16_t l abort(); } - logger(DEBUG_ALWAYS, LOG_DEBUG, "receive_meta_sptps(%s, %d, %p, %hu)", c->name, type, data, length); + logger(DEBUG_META, LOG_DEBUG, "receive_meta_sptps(%s, %d, %p, %hu)", c->name, type, data, length); if(type == SPTPS_HANDSHAKE) { if(c->allow_request == ACK) @@ -162,7 +162,7 @@ bool receive_meta(connection_t *c) { do { if(c->protocol_minor >= 2) { - logger(DEBUG_ALWAYS, LOG_DEBUG, "Receiving %d bytes of SPTPS data", inlen); + logger(DEBUG_META, LOG_DEBUG, "Receiving %d bytes of SPTPS data", inlen); return sptps_receive_data(&c->sptps, bufp, inlen); } -- 2.20.1