summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-12 00:38:23 +0200
committerwm4 <wm4@nowhere>2014-06-12 00:55:14 +0200
commit598245a80fa74455b71372b569a21f88a11e732b (patch)
treea990e86240791042f33ab6a559269ac6bc3628ff
parent8ad8dedca8189f7cff44b93f379a1520df3e05f9 (diff)
downloadmpv-598245a80fa74455b71372b569a21f88a11e732b.tar.bz2
mpv-598245a80fa74455b71372b569a21f88a11e732b.tar.xz
cache: print cache size only in verbose mode
Seems pretty useless in general, so this reduces output noise.
-rw-r--r--stream/cache.c4
1 files changed, 2 insertions, 2 deletions
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);