Browse Source

Make warnings.sh output errs as well

Closes #21532.
teor 7 years ago
parent
commit
8f100b920e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tools/warnings.sh

+ 2 - 1
tools/warnings.sh

@@ -14,7 +14,8 @@ fi
 
 function show_warnings() {
     echo "${GREEN}Node `basename $1`:${NC}"
-    sed -n 's/^.*\[warn\]//p' $1/info.log | sort | uniq -c | \
+    # Label errs as "Warning:", they're infrequent enough it doesn't matter
+    sed -n -E 's/^.*\[(warn|err)\]//p' $1/info.log | sort | uniq -c | \
     sed -e 's/^\s*//' -e "s/ *\([0-9][0-9]*\) *\(.*\)/ ${YELLOW}Warning:${NC} \2${YELLOW} Number: \1${NC}/"
     echo ""
 }