Skip to content

Commit

Permalink
refactor: improve logging message in core_dl.sh
Browse files Browse the repository at this point in the history
The logging message in the `fn_fetch_file` function has been updated to provide a more concise and informative description of the file being fetched.
  • Loading branch information
dgibbs64 committed Sep 26, 2023
1 parent e239aa5 commit c4a3c5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lgsm/modules/core_dl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ fn_fetch_file() {
"${curlcmd[@]}" --progress-bar "${fileurl}" 2>&1
exitcode="$?"
else
echo -en "fetching from ${fileurl_name} ( ${local_filename} )\c"
echo -en "fetching ${fileurl_name} ${local_filename}...\c"
"${curlcmd[@]}" --silent --show-error "${fileurl}" 2>&1
exitcode="$?"
fi
Expand Down

0 comments on commit c4a3c5a

Please sign in to comment.