diff options
author | Alexander <alex.strizhakov@gmail.com> | 2019-12-21 13:54:22 +0300 |
---|---|---|
committer | Alexander Strizhakov <alex.strizhakov@gmail.com> | 2020-01-10 15:52:01 +0300 |
commit | 9c1f3bfeffa7e40d319d931c975b948f33800c40 (patch) | |
tree | deab1a512fc486620699adf3d17a23a1202caf95 /lib | |
parent | cda2c1fc630e455b3d419f5c3b22c366dc883ce1 (diff) | |
download | pleroma-9c1f3bfeffa7e40d319d931c975b948f33800c40.tar.gz |
fixes for logger backends
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/admin_api/config.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/admin_api/config.ex b/lib/pleroma/web/admin_api/config.ex index a8a698c89..ef658e079 100644 --- a/lib/pleroma/web/admin_api/config.ex +++ b/lib/pleroma/web/admin_api/config.ex @@ -295,7 +295,8 @@ defmodule Pleroma.Web.AdminAPI.Config do @spec is_module_name?(String.t()) :: boolean() def is_module_name?(string) do - Regex.match?(~r/^(Pleroma|Phoenix|Tesla)\./, string) or string in ["Oban", "Ueberauth"] + Regex.match?(~r/^(Pleroma|Phoenix|Tesla|Quack)\./, string) or + string in ["Oban", "Ueberauth", "ExSyslogger"] end defp do_eval(entity) do |