mirror of
https://github.com/plexguide/Huntarr.git
synced 2026-05-01 04:29:33 -05:00
Logs Fixed
This commit is contained in:
@@ -275,13 +275,8 @@ def logs_stream():
|
||||
|
||||
# Only filter when reading system log for specific app tab
|
||||
if app_type != 'all' and app_type != 'system' and name == 'system':
|
||||
# Include system log entries that mention this app name
|
||||
# or contain patterns specific to the app
|
||||
app_pattern = f"huntarr.{app_type}"
|
||||
include_line = (
|
||||
app_type.lower() in line.lower() or
|
||||
app_pattern in line
|
||||
)
|
||||
# MODIFIED: Don't include system logs in app tabs at all
|
||||
include_line = False
|
||||
else:
|
||||
include_line = True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user