From 5e5458146b1dd345c4e5d31de032c51cf8cf9bc6 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Wed, 5 Feb 2025 12:33:34 -0600 Subject: [PATCH] Update error message --- lib/services/logs.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/logs.dart b/lib/services/logs.dart index d11e3f1..2c6723b 100644 --- a/lib/services/logs.dart +++ b/lib/services/logs.dart @@ -4,7 +4,7 @@ import 'package:flutter/widgets.dart'; import 'package:mobile_nebula/services/result.dart'; class LogsNotFoundException implements Exception { - String error() => 'No logs found. Has the site been started?'; + String error() => 'No logs found. Logs will be available after starting the site for the first time.'; } class LogsNotifier extends ChangeNotifier {