mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
7619e62b70
Also modify `logmsg` to output additional separator lines to make the demarcation between tests even clearer.
9 lines
153 B
Fish
9 lines
153 B
Fish
function logmsg
|
|
echo
|
|
echo "####################"
|
|
echo "# $argv"
|
|
|
|
echo >&2
|
|
echo "####################" >&2
|
|
echo "# $argv" >&2
|
|
end
|