shlist

share and manage lists between multiple people
Log | Files | Refs

commit e1b9bae1b17afdc95066ae5833d97e9d43007b25
parent f2ce8de8eebe656785ba0e34b44321619cd0fb2d
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Sun, 24 May 2015 00:29:15 -0600

sl: change some info's to warn's

Diffstat:
Msl | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sl b/sl @@ -82,11 +82,11 @@ while (my ($new_sock, $peer_addr_bin) = $sock->accept()) { my ($phone_num, $name) = split("\0", $new_list); unless ($name && $name ne "") { - print "info: $hdr: name missing or empty, skipping\n"; + print "warn: $hdr: name missing or empty, skipping\n"; next; } unless ($phone_num && $phone_num ne "") { - print "info: $hdr: phone number missing, skipping\n"; + print "warn: $hdr: phone number missing, skipping\n"; next; }