summaryrefslogtreecommitdiffstats
path: root/libass/ass_fontselect.c
diff options
context:
space:
mode:
authorAvi Halachmi (:avih) <avihpit@yahoo.com>2016-07-11 01:50:22 +0300
committerAvi Halachmi (:avih) <avihpit@yahoo.com>2016-07-11 01:56:10 +0300
commit669d06d814da42f7046689c97f578756d6cb6aa7 (patch)
tree5961c05945ef4a2e029f3b95aade6bafda4646e6 /libass/ass_fontselect.c
parent9e3c9e5290e14ebb82dcc06d3ceede0e9fc891fa (diff)
downloadlibass-669d06d814da42f7046689c97f578756d6cb6aa7.tar.bz2
libass-669d06d814da42f7046689c97f578756d6cb6aa7.tar.xz
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
Diffstat (limited to 'libass/ass_fontselect.c')
-rw-r--r--libass/ass_fontselect.c2
1 files changed, 1 insertions, 1 deletions
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);