fix: warn on .env file not found
This commit is contained in:
parent
32aea2cbd5
commit
7176c3e193
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ func main() {
|
|||
|
||||
err := godotenv.Load()
|
||||
if err != nil {
|
||||
slog.Error("Error loading .env file", slog.Any("error", err))
|
||||
slog.Warn("No .env file was found; using environment variables.", slog.Any("error", err))
|
||||
}
|
||||
|
||||
go worker.StartWorkers()
|
||||
|
|
|
|||
Loading…
Reference in a new issue