Don't display so many useless string in prod

This commit is contained in:
Némunaire 2015-01-18 09:29:50 +01:00 committed by Nemunaire
commit 2f4feb3082
2 changed files with 3 additions and 3 deletions

View file

@ -425,7 +425,7 @@ sub create_socket
while(my $connection = $socket->accept)
{
say "New connexion, new thread ready for parsing actions!";
#say "New connexion, new thread ready for parsing actions!";
threads->create(\&socket_run, $m, $connection);
}
}
@ -445,7 +445,7 @@ sub socket_run
print $connection "\n";
$connection->flush;
}
say "Closing socket connection; stopping thread.";
#say "Closing socket connection; stopping thread.";
close $connection;
}