diff options
author | des <des@FreeBSD.org> | 2003-02-13 21:21:48 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-02-13 21:21:48 +0000 |
commit | 1ffb549565a2b4ff6bfcb1aebfb20a49f5deba5c (patch) | |
tree | cf408a0a712d0294dd3561c16f51dea37f718441 /tools | |
parent | d277a3419379a68d03d1483eb351759ee4798bad (diff) | |
download | FreeBSD-src-1ffb549565a2b4ff6bfcb1aebfb20a49f5deba5c.zip FreeBSD-src-1ffb549565a2b4ff6bfcb1aebfb20a49f5deba5c.tar.gz |
Make the tinderbox log lines less obtrusive.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/tinderbox.pl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tools/tools/tinderbox/tinderbox.pl b/tools/tools/tinderbox/tinderbox.pl index 84ea096..2104f70 100644 --- a/tools/tools/tinderbox/tinderbox.pl +++ b/tools/tools/tinderbox/tinderbox.pl @@ -58,7 +58,7 @@ my %cmds = ( sub message(@) { - my $msg = join(' ', "TB ***", @_); + my $msg = join(' ', "TB ---", @_); chomp($msg); print("$msg\n"); } @@ -209,9 +209,7 @@ sub logstage($) { my $msg = shift; chomp($msg); - print(STDERR "TB ", "*"x74, "\n"); - print(STDERR strftime("TB *** %Y-%m-%d %H:%M:%S - $msg\n", localtime())); - print(STDERR "TB ", "*"x74, "\n"); + print(STDERR strftime("TB --- %Y-%m-%d %H:%M:%S - $msg\n", localtime())); } sub sigwarn { |