From 598245a80fa74455b71372b569a21f88a11e732b Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 12 Jun 2014 00:38:23 +0200 Subject: cache: print cache size only in verbose mode Seems pretty useless in general, so this reduces output noise. --- stream/cache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stream') diff --git a/stream/cache.c b/stream/cache.c index be32bae9f4..7ed3f3ae32 100644 --- a/stream/cache.c +++ b/stream/cache.c @@ -681,8 +681,8 @@ int stream_cache_init(stream_t *cache, stream_t *stream, return -1; } - MP_INFO(cache, "Cache size set to %" PRId64 " KiB\n", - s->buffer_size / 1024); + MP_VERBOSE(cache, "Cache size set to %" PRId64 " KiB\n", + s->buffer_size / 1024); pthread_mutex_init(&s->mutex, NULL); pthread_cond_init(&s->wakeup, NULL); -- cgit v1.2.3