This commit is contained in:
2023-12-05 21:40:58 -06:00
parent 2d5bbb85e6
commit 5bb5839429
2 changed files with 5 additions and 5 deletions

View File

@@ -798,13 +798,13 @@ STATUS_SCANTIMES(){
echo -en "\r\033[K"
echo -e "${idsCL[LightCyan]}Average for last '${scansfound}' : ${idsCL[Green]}$(SHOW_TIME ${average} s) (${average}s)${idsCL[Default]}\n"
echo -e "${idsCL[LightCyan]}Last Scan Time : ${idsCL[Green]}$(SHOW_TIME ${lastscantime} s) (${lastscantime}s)${idsCL[Default]}\n"
echo -e "${idsCL[LightCyan]}Last 10 Scan Times\n${idsCL[Green]}-------------------------${idsCL[Default]}"
echo -e "${idsCL[LightCyan]}Average for last '${scansfound}' : ${idsCL[Green]}$(SHOW_TIME ${average} s) (${average}s)${idsCL[Default]}\n"
echo -e "${idsCL[LightCyan]}Last Scan Time : ${idsCL[Green]}$(SHOW_TIME ${lastscantime} s) (${lastscantime}s)${idsCL[Default]}\n"
echo -e "${idsCL[LightCyan]}Last 10 Scan Times\n${idsCL[Green]}---------------------------------${idsCL[Default]}"
for scantime in "${lastten_scantimes[@]}"; do
echo -e "${idsCL[White]} $(SHOW_TIME ${scantime} s) (${scantime}s)${idsCL[Default]}"
done
echo
echo -e "\n"
}