From 669d06d814da42f7046689c97f578756d6cb6aa7 Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Mon, 11 Jul 2016 01:50:22 +0300 Subject: font load from dir: use MSGL_INFO instead of MSGL_WARN This is a normal course of action and should not generate a warning, especially for applications which use libass and might notify the user on such "warnings", while in fact it should be info or even verbose. Fixes #231 --- libass/ass_fontselect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libass/ass_fontselect.c b/libass/ass_fontselect.c index dc98f5e..5426b15 100644 --- a/libass/ass_fontselect.c +++ b/libass/ass_fontselect.c @@ -175,7 +175,7 @@ static void load_fonts_from_dir(ASS_Library *library, const char *dir) char fullname[4096]; snprintf(fullname, sizeof(fullname), "%s/%s", dir, entry->d_name); size_t bufsize = 0; - ass_msg(library, MSGL_WARN, "Loading font file '%s'", fullname); + ass_msg(library, MSGL_INFO, "Loading font file '%s'", fullname); void *data = read_file(library, fullname, &bufsize); if (data) { ass_add_font(library, entry->d_name, data, bufsize); -- cgit v1.2.3