fish-shell/tests/test_functions/logmsg.fish
Kurtis Rader 7619e62b70 use new logmsg and set --show in tests
Also modify `logmsg` to output additional separator lines to make the
demarcation between tests even clearer.
2017-08-03 21:25:20 -07:00

9 lines
153 B
Fish

function logmsg
echo
echo "####################"
echo "# $argv"
echo >&2
echo "####################" >&2
echo "# $argv" >&2
end