1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

Open logs in line-buffered mode, so that logging is actually useful.

svn path=/trunk/log/; revision=2075
This commit is contained in:
Michael Smith 2001-09-23 10:07:06 +00:00
parent c56ec17b07
commit c0c636413f

View File

@ -84,6 +84,7 @@ int log_open(const char *filename)
_release_log_id(log_id);
return LOG_ECANTOPEN;
}
setvbuf(loglist[log_id].logfile, NULL, _IOLBF, 0);
return log_id;
}