From ab6b71813d70e2219120239d6a2c8b0d8711c6f6 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 12 Jan 2024 09:30:55 -0500 Subject: [PATCH] fix: update error message --- protocols/s5.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/s5.go b/protocols/s5.go index 4fc5cfe..024b56b 100644 --- a/protocols/s5.go +++ b/protocols/s5.go @@ -63,7 +63,7 @@ func (s *S5Protocol) Initialize(portal interfaces.Portal) error { dbPath := pconfig.GetString("dbPath") if dbPath == "" { - logger.Fatal("dbPath is required") + logger.Fatal("protocol.s5.dbPath is required") } _, p, err := ed25519.GenerateKey(nil)