diff options
author | Petter Reinholdtsen <pere@hungry.com> | 2017-01-14 18:31:29 +0100 |
---|---|---|
committer | Petter Reinholdtsen <pere@hungry.com> | 2017-01-14 18:31:29 +0100 |
commit | 262e119be71406ef5916ccdb05b47a675e1f48d0 (patch) | |
tree | fd9aff58a4e40c690db999c0b7f10d5fc758b7b8 | |
parent | ff476902f0209401d3cd530a8526d2c5a85c6141 (diff) |
Improve messages.
-rwxr-xr-x | runcheck | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ cat $file | while read url ; do harfile="har-data/$filename.har" kmlfile="kml-data/$filename.kml" if [ ! -e "$harfile" ] ; then - echo "testing $url" + echo "info: testing $url" if phantomjs --ssl-protocol any $basedir/netsniff.js "$url" > "$harfile.new" && [ -s "$harfile.new" ] && [ "$(jq -r '.log | .entries | map(.request) | map(.url) | join("\n")' $harfile.new)" ]; then |