diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2024-01-10 10:00:14 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-01-10 11:26:59 +0100 |
commit | 58b5b2eca00acc14510dbf2c741f12d7e799a264 (patch) | |
tree | c790ad1f5835e6f9bc0a82947eed63327283ad36 /ogcp/views.py | |
parent | 58852f68aa79b56da815b46864d7da2343feebba (diff) |
views: Warn user when no logs available
Warn user if trying to access the logs of a client that don't yet exist.
This is prefered to showing the backtrace to the user.
Diffstat (limited to 'ogcp/views.py')
-rw-r--r-- | ogcp/views.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index b83abb4..b124287 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -2100,6 +2100,9 @@ def action_legacy_log(): return redirect(url_for('commands')) ip = ips.pop() log_file = Path("/opt/opengnsys/log/clients/" + str(ip) + ".log") + if not os.access(log_file, os.R_OK): + flash(_('No log available for this client yet'), category='error') + return redirect(url_for('commands')) log = log_file.read_text() if log: scopes, clients = get_scopes(set(ips)) |