Print error messages to stderr, not stdout.
This commit is contained in:
parent
70776a9c0b
commit
2c7c3a91e9
@ -89,6 +89,6 @@ while (<STDIN>) {
|
||||
}
|
||||
next;
|
||||
}
|
||||
print "unrecognized config token $key\n";
|
||||
print STDERR "unrecognized config token $key\n";
|
||||
}
|
||||
}
|
||||
|
@ -89,6 +89,6 @@ while (<STDIN>) {
|
||||
}
|
||||
next;
|
||||
}
|
||||
print "unrecognized config token $key\n";
|
||||
print STDERR "unrecognized config token $key\n";
|
||||
}
|
||||
}
|
||||
|
@ -82,6 +82,6 @@ while (<STDIN>) {
|
||||
}
|
||||
next;
|
||||
}
|
||||
print "unrecognized config token $key\n";
|
||||
print STDERR "unrecognized config token $key\n";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user