From 81a802e3fcccc6c234334bb17bb6e400f8c35b65 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Thu, 11 Aug 2022 10:09:18 -0600 Subject: [PATCH] Only allow warn+err lvl logging for Tor service The Tor service logs often confuse Whoogle users, since they're a lot more verbose than anything Whoogle ever reports. The bulk of these logs use "notice" level logging and are not helpful for the average user, so everything between debug and notice is now directed to /dev/null. Fixes #825 --- misc/tor/torrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/misc/tor/torrc b/misc/tor/torrc index b162719..f81920a 100644 --- a/misc/tor/torrc +++ b/misc/tor/torrc @@ -6,3 +6,6 @@ CookieAuthFileGroupReadable 1 ExtORPortCookieAuthFileGroupReadable 1 CacheDirectoryGroupReadable 1 CookieAuthFile /var/lib/tor/control_auth_cookie +Log debug file /dev/null +Log info file /dev/null +Log notice file /dev/null