diff options
author | Simponic <loganhunt@simponic.xyz> | 2023-01-06 20:55:12 -0700 |
---|---|---|
committer | Simponic <loganhunt@simponic.xyz> | 2023-01-06 21:05:01 -0700 |
commit | 5b8dc2cb9800ed38ba1dc02fa5a135880a2c0bac (patch) | |
tree | 45c400030a5fb44510fcb296cb08f234f940bcb8 /lib/chessh/ssh/tui.ex | |
parent | ce62dd6106f94473db919335cc49029421fde4ad (diff) | |
download | chessh-5b8dc2cb9800ed38ba1dc02fa5a135880a2c0bac.tar.gz chessh-5b8dc2cb9800ed38ba1dc02fa5a135880a2c0bac.zip |
Checkpoint - board is drawn!
Diffstat (limited to 'lib/chessh/ssh/tui.ex')
-rw-r--r-- | lib/chessh/ssh/tui.ex | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/chessh/ssh/tui.ex b/lib/chessh/ssh/tui.ex index d76986f..5d43760 100644 --- a/lib/chessh/ssh/tui.ex +++ b/lib/chessh/ssh/tui.ex @@ -76,7 +76,6 @@ defmodule Chessh.SSH.Tui do {:send_data, data}, %{connection_ref: connection_ref, channel_id: channel_id} = state ) do - Logger.debug("Data was sent to TUI process #{inspect(data)}") :ssh_connection.send(connection_ref, channel_id, data) {:ok, state} end @@ -97,7 +96,6 @@ defmodule Chessh.SSH.Tui do {:ssh_cm, _connection_handler, {:data, _channel_id, _type, data}}, state ) do - Logger.debug("DATA #{inspect(data)}") send(state.client_pid, {:data, data}) {:ok, state} end @@ -132,7 +130,6 @@ defmodule Chessh.SSH.Tui do {:window_change, _channel_id, width, height, _pixwidth, _pixheight}}, %{client_pid: client_pid} = state ) do - Logger.debug("WINDOW CHANGE") send(client_pid, {:resize, {width, height}}) {:ok, |