From 5578df8e1917eb506a3d78e1762a4e1dbbcf5bdd Mon Sep 17 00:00:00 2001 From: Florian Baumann Date: Fri, 15 Sep 2023 08:48:44 +0200 Subject: [PATCH] Wording --- src/serra/env.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/serra/env.go b/src/serra/env.go index e7ed492..e03b397 100644 --- a/src/serra/env.go +++ b/src/serra/env.go @@ -11,7 +11,7 @@ func getMongoDBURI() string { l := Logger() uri := os.Getenv("MONGODB_URI") if uri == "" { - l.Fatal("You must set your 'MONGODB_URI' environmental variable. See\n\t https://docs.mongodb.com/drivers/go/current/usage-examples/#environment-variable") + l.Fatal("You must set 'MONGODB_URI' environmental variable. See\n\t https://docs.mongodb.com/drivers/go/current/usage-examples/#environment-variable") } return uri @@ -27,7 +27,7 @@ func getCurrency() string { case "USD": return USD default: - l.Warn("Warning: You did not configure SERRA_CURRENCY. Assuming \"USD\"") + l.Warn("You did not configure SERRA_CURRENCY. Assuming \"USD\"") return "$" } }