Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Sep 1, 2023
1 parent 7405cc1 commit 072cbfc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/net/tcp_connection.pony
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,15 @@ actor TCPConnection is AsioEventNotify
_in_sent = true
write_final(_notify.sent(this, data))
_in_sent = false
else
@printf("write NOT progressing\n".cstring())
if _connected == false then
@printf("_connected is false\n".cstring())
end
if _closed == true then
@printf("_closed is true\n".cstring())
end

end

be writev(data: ByteSeqIter) =>
Expand Down

0 comments on commit 072cbfc

Please sign in to comment.