From: Thomas Winkler Date: Mon, 15 Dec 2025 05:39:41 +0000 (+0100) Subject: tang: make sure output and errors are logged to system log X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=68b538b3ed0caab0e0e2f4454e4d60cabf1ff50a;p=feed%2Fpackages.git tang: make sure output and errors are logged to system log Currently, there is no logging at all, causing difficulties with troubleshooting. Edit originally proposed by @q-b #26076 (comment) and implemented by @rugk #27401 Signed-off-by: Thomas Winkler --- diff --git a/utils/tang/files/tang.init b/utils/tang/files/tang.init index 7843928239..c87197b37a 100644 --- a/utils/tang/files/tang.init +++ b/utils/tang/files/tang.init @@ -21,5 +21,7 @@ start_service() { procd_set_param command /usr/sbin/tangd -p "${port}" -l /usr/share/tang/db procd_set_param respawn procd_set_param user tang + procd_set_param stderr 1 + procd_set_param stdout 1 procd_close_instance }