Commit 27e8cf1ccd9efc33d9c8bf4a247dfc0d3e5dbe7a
1 parent
2ddb91a5
remove some print
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
asterisk/ami.anubis
| ... | ... | @@ -26,9 +26,9 @@ define Maybe(List(String)) |
| 26 | 26 | //if read(conn, 16384, 5) is |
| 27 | 27 | if read_line(conn, 80, 10) is |
| 28 | 28 | { |
| 29 | - error then println("Read error");failure, | |
| 30 | - timeout then println("Read timeout");failure, | |
| 31 | - eof then println("Read timeout");failure, | |
| 29 | + error then failure, | |
| 30 | + timeout then failure, | |
| 31 | + eof then failure, | |
| 32 | 32 | ok(str) then |
| 33 | 33 | if str = crlf then |
| 34 | 34 | (if print_dump then | ... | ... |