mirror of
https://github.com/mpv-player/mpv
synced 2025-02-05 14:42:24 +00:00
cache: print cache size only in verbose mode
Seems pretty useless in general, so this reduces output noise.
This commit is contained in:
parent
8ad8dedca8
commit
598245a80f
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user