From bdb10179ad6cd8d6c837076d0abc9ea657945e50 Mon Sep 17 00:00:00 2001 From: Uchijo Date: Thu, 14 Dec 2023 23:55:15 +0900 Subject: [PATCH] =?UTF-8?q?.env=E3=83=95=E3=82=A1=E3=82=A4=E3=82=A2?= =?UTF-8?q?=E3=83=AB=E5=BF=85=E9=A0=88=E3=81=98=E3=82=83=E3=81=AA=E3=81=8F?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- util/load_env.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/load_env.go b/util/load_env.go index a359799..3006cfe 100644 --- a/util/load_env.go +++ b/util/load_env.go @@ -9,6 +9,6 @@ import ( func LoadEnv() { err := godotenv.Load() if err != nil { - log.Fatal("failed to load environment variables.") + log.Print(".env file not found. going to load from bare env vars.") } }