Browse Source

Bug corrected

Ignacio Gago 9 years ago
parent
commit
5a65144084
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tools/warnings.sh

+ 1 - 1
tools/warnings.sh

@@ -11,7 +11,7 @@
 
 function show_warnings() {
     echo "${GREEN}Node `basename $1`:${NC}"
-    sed -n 's/^.*\[warn\]//p' $1/info.log | uniq -c | \
+    sed -n 's/^.*\[warn\]//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 ""
 }