From 349c87c5f1cdaa4aa6a0631f2f420df770599a62 Mon Sep 17 00:00:00 2001 From: Kieran Eglin Date: Wed, 15 May 2024 12:13:50 -0700 Subject: [PATCH] Changed default log level to debug --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index 0f2b254..8e47790 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -53,7 +53,7 @@ if config_env() == :prod do # For testing alternate journal modes (see issue #137) journal_mode = String.to_existing_atom(System.get_env("JOURNAL_MODE", "wal")) - config :logger, level: String.to_existing_atom(System.get_env("LOG_LEVEL", "info")) + config :logger, level: String.to_existing_atom(System.get_env("LOG_LEVEL", "debug")) config :pinchflat, yt_dlp_executable: System.find_executable("yt-dlp"),