We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a34f2d commit 6a66027Copy full SHA for 6a66027
config/runtime.exs
@@ -74,7 +74,9 @@ end
74
# Deprecate ECTO_IPV6 in favor of PG_IPV6
75
ecto_socket_opts = if (System.get_env("ECTO_IPV6") || System.get_env("PG_IPV6")) in ~w(true 1), do: [:inet6], else: []
76
77
-config :logger, default_handler: [formatter: {Datadog, metadata: :all}]
+if config_env() == :prod do
78
+ config :logger, default_handler: [formatter: {Datadog, metadata: :all}]
79
+end
80
81
if config_env() == :prod and self_hosted do
82
account_self_signup =
0 commit comments