Hello,
I use tvheadend on a Raspberry Pi and use rsyslog.
I have compiled tvheadend from git with:
git clone https://github.com/tvheadend/tvheadend.git --depth 1
./configure --enable-bundle --disable-avahi --disable-dvbscan --disable-iptv
DVB scan files path:
/usr/local/share/tvheadend/data/dvb-scan/
I haven't enable logging via /etc/default/tvheadend and can confirm, that on the WebUI settings debug page no checkboxes are selected and $ARGS are only
-f -u hts -g video -c /home/hts/.hts/tvheadend --http_root /
How to disable logging to syslog? Do I have to dig into tvhlog.c?
Best regards,
Timo
edit:
I have patched src/tvhlog.c in "void _tvhlog" and added after the "{" a new line with "return;".
void _tvhlog ( const char *file, int line,
int notify, int severity,
const char *subsys, const char *fmt, ...
mt, ... )
{
return;
va_list args;