1
0
mirror of https://github.com/algora-io/tv.git synced 2024-11-26 01:00:20 +02:00

disable ecto logs

This commit is contained in:
zafer 2024-04-27 22:04:37 +03:00
parent 4811cd6c4b
commit 64dcdbd8d5

View File

@ -29,13 +29,15 @@ config :ex_aws, :s3,
config :algora, Algora.Repo,
url: System.get_env("DATABASE_URL"),
show_sensitive_data_on_connection_error: true,
pool_size: 10
pool_size: 10,
log: false
config :algora, Algora.Repo.Local,
url: System.get_env("DATABASE_URL"),
show_sensitive_data_on_connection_error: true,
pool_size: 10,
priv: "priv/repo"
priv: "priv/repo",
log: false
# For development, we disable any cache and enable
# debugging and code reloading.