Skip to content

Commit

Permalink
Merge pull request #638 from timbuchwaldt/feature/disable-logger-on-1.7
Browse files Browse the repository at this point in the history
Disable logger check on elixir >= 1.7
  • Loading branch information
rrrene committed Mar 7, 2019
2 parents 5ba81d5 + cc1780e commit b3da3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/credo/check/warning/lazy_logging.ex
Expand Up @@ -31,7 +31,7 @@ defmodule Credo.Check.Warning.LazyLogging do
ignore: [:error, :warn, :info]
]

use Credo.Check, base_priority: :high
use Credo.Check, base_priority: :high, elixir_version: "< 1.7.0"

@doc false
def run(source_file, params \\ []) do
Expand Down

0 comments on commit b3da3e1

Please sign in to comment.