Improve build and error handling

This commit is contained in:
2023-05-11 09:39:23 +02:00
parent 538427d59b
commit cc634dd155
2 changed files with 12 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ import (
func LoadEnv(file string) error {
f, err := os.Open(file)
if err != nil {
log.Error("Error while opening file")
log.Error("Error while opening .env file")
return err
}