1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-12-04 14:46:30 -05: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 0bf3470744
commit 9d87eecd0f

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;
}