标签: logging elixir phoenix-framework
运行凤凰服务器时,我收到[debug]个日志,我希望不会有这些日志(日志为蓝色)。
[debug]
如何更改我的config以摆脱这些
config
答案 0 :(得分:7)
您可以将dev中的日志级别设置为高于debug,这将使Logger无法打印任何debug条消息。级别just above debug is info。您可以将其添加到config/dev.exs:
dev
debug
info
config/dev.exs
config :logger, level: :info
如果您已有config :logger行,则只需在其末尾添加level: :info即可。您必须重新启动应用程序才能生效。
config :logger
level: :info