Compare commits

...

1 Commits

Author SHA1 Message Date
0333862e3c error print fix 2024-05-30 17:19:16 +02:00

View File

@@ -1,9 +1,9 @@
package config
import (
"fmt"
"os"
"github.com/gofiber/fiber/v2/log"
"github.com/joho/godotenv"
)
@@ -16,7 +16,7 @@ func init() {
func GetEnv(name string, defVal string) string {
env := os.Getenv(name)
if env == "" {
fmt.Panicln("Missing " + name + " env variable")
log.Panicf("Missing %s env variable", name)
}
return env