mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-25 18:20:57 -05:00
Change log level from warn to debug (#1034)
* Change log level from warn to debug * Move 'Linting x file' to be printed only if files are found Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
This commit is contained in:
parent
981de6bcfa
commit
cf0e6a9704
2 changed files with 19 additions and 19 deletions
|
@ -254,7 +254,7 @@ function CheckFileType() {
|
||||||
############################
|
############################
|
||||||
# Extension was not found! #
|
# Extension was not found! #
|
||||||
############################
|
############################
|
||||||
warn "Failed to get filetype for:[${FILE}]!"
|
debug "Failed to get filetype for:[${FILE}]!"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
|
@ -23,24 +23,6 @@ function LintCodebase() {
|
||||||
TEST_CASE_RUN="${1}" && shift # Flag for if running in test cases
|
TEST_CASE_RUN="${1}" && shift # Flag for if running in test cases
|
||||||
FILE_ARRAY=("$@") # Array of files to validate (Example: ${FILE_ARRAY_JSON})
|
FILE_ARRAY=("$@") # Array of files to validate (Example: ${FILE_ARRAY_JSON})
|
||||||
|
|
||||||
################
|
|
||||||
# print header #
|
|
||||||
################
|
|
||||||
info ""
|
|
||||||
info "----------------------------------------------"
|
|
||||||
info "----------------------------------------------"
|
|
||||||
|
|
||||||
debug "Running LintCodebase. FILE_TYPE: ${FILE_TYPE}. Linter name: ${LINTER_NAME}, linter command: ${LINTER_COMMAND}, TEST_CASE_RUN: ${TEST_CASE_RUN}, FILTER_REGEX_INCLUDE: ${FILTER_REGEX_INCLUDE}, FILTER_REGEX_EXCLUDE: ${FILTER_REGEX_EXCLUDE} files to lint: ${FILE_ARRAY[*]}"
|
|
||||||
|
|
||||||
if [ "${TEST_CASE_RUN}" = "true" ]; then
|
|
||||||
info "Testing Codebase [${FILE_TYPE}] files..."
|
|
||||||
else
|
|
||||||
info "Linting [${FILE_TYPE}] files..."
|
|
||||||
fi
|
|
||||||
|
|
||||||
info "----------------------------------------------"
|
|
||||||
info "----------------------------------------------"
|
|
||||||
|
|
||||||
##########################
|
##########################
|
||||||
# Initialize empty Array #
|
# Initialize empty Array #
|
||||||
##########################
|
##########################
|
||||||
|
@ -104,6 +86,24 @@ function LintCodebase() {
|
||||||
fi
|
fi
|
||||||
debug "Workspace path: ${WORKSPACE_PATH}"
|
debug "Workspace path: ${WORKSPACE_PATH}"
|
||||||
|
|
||||||
|
################
|
||||||
|
# print header #
|
||||||
|
################
|
||||||
|
info ""
|
||||||
|
info "----------------------------------------------"
|
||||||
|
info "----------------------------------------------"
|
||||||
|
|
||||||
|
debug "Running LintCodebase. FILE_TYPE: ${FILE_TYPE}. Linter name: ${LINTER_NAME}, linter command: ${LINTER_COMMAND}, TEST_CASE_RUN: ${TEST_CASE_RUN}, FILTER_REGEX_INCLUDE: ${FILTER_REGEX_INCLUDE}, FILTER_REGEX_EXCLUDE: ${FILTER_REGEX_EXCLUDE} files to lint: ${FILE_ARRAY[*]}"
|
||||||
|
|
||||||
|
if [ "${TEST_CASE_RUN}" = "true" ]; then
|
||||||
|
info "Testing Codebase [${FILE_TYPE}] files..."
|
||||||
|
else
|
||||||
|
info "Linting [${FILE_TYPE}] files..."
|
||||||
|
fi
|
||||||
|
|
||||||
|
info "----------------------------------------------"
|
||||||
|
info "----------------------------------------------"
|
||||||
|
|
||||||
##################
|
##################
|
||||||
# Lint the files #
|
# Lint the files #
|
||||||
##################
|
##################
|
||||||
|
|
Loading…
Reference in a new issue