Development

This commit is contained in:
Matthew Grotke 2026-06-09 11:37:48 -04:00
parent e4a9d5c038
commit bf4e7175cb
4 changed files with 6 additions and 6 deletions

View file

@ -275,7 +275,7 @@ def api_log_tail():
lines = (prev[-need:] if need and prev else []) + current
if not lines:
return jsonify({'log': '(log is empty)', 'left': '', 'right': ''})
return jsonify({'log': '(no log entries yet)', 'left': '', 'right': ''})
log_dir = os.path.dirname(RADIUS_LOG_FILE)
try:

View file

@ -32,7 +32,7 @@ def radius_log_tail(cfg):
lines = (prev[-need:] if need and prev else []) + current
if not lines:
return '(log is empty)', ''
return '(no log entries yet)', ''
log_dir = os.path.dirname(RADIUS_LOG_FILE)
try: