Skip to content

Commit

Permalink
mix format
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed Nov 1, 2019
1 parent 5e6c5dd commit bbe71d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/logger/test/logger_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -482,10 +482,10 @@ defmodule LoggerTest do
assert capture_log(fn -> Logger.info("hello") end) =~ "hello"

:logger.set_primary_config(:level, :notice)
assert Logger.level == :info
assert Logger.level() == :info

:logger.set_primary_config(:level, :emergency)
assert Logger.level == :error
assert Logger.level() == :error
after
Logger.configure(level: :debug)
end
Expand Down

0 comments on commit bbe71d8

Please sign in to comment.