Skip to content

Commit

Permalink
newline after error
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillerDragon committed Jan 29, 2025
1 parent c882d2e commit ca35112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/include/logger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function _log() {
then
if ! tail -n 2000 "$logfile" > "$logfile".tmp
then
echo -ne "${ts}ERROR: FAILED TO TAIL LOGFILE. COULD NOT CREATE TMP FILE." > "$logfile"
echo -e "${ts}ERROR: FAILED TO TAIL LOGFILE. COULD NOT CREATE TMP FILE." > "$logfile"
else
mv "$logfile".tmp "$logfile"
fi
Expand Down

0 comments on commit ca35112

Please sign in to comment.