Skip to content

Commit

Permalink
Right verbosity level for validation error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
mkarlesky committed Jan 3, 2024
1 parent c96e300 commit e286993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ceedling/configurator_validator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def validate_executable_filepath(config, *keys)
# no verbosity checking since this is lowest level anyhow & verbosity checking depends on configurator
@stream_wrapper.stderr_puts(
"ERROR: Config filepath #{format_key_sequence(keys, hash[:depth])}['#{filepath}'] does not exist in system search paths.",
Verbosity::COMPLAIN
Verbosity::ERRORS
)
return false
end
Expand All @@ -141,7 +141,7 @@ def validate_executable_filepath(config, *keys)
# no verbosity checking since this is lowest level anyhow & verbosity checking depends on configurator
@stream_wrapper.stderr_puts(
"ERROR: Config filepath #{format_key_sequence(keys, hash[:depth])}['#{filepath}'] does not exist on disk.",
Verbosity::COMPLAIN
Verbosity::ERRORS
)
return false
end
Expand Down

0 comments on commit e286993

Please sign in to comment.