summaryrefslogtreecommitdiff
path: root/lib/irc
diff options
context:
space:
mode:
authorhref <href@random.sh>2021-09-02 02:48:38 +0200
committerhref <href@random.sh>2021-09-02 02:50:25 +0200
commitb429aaa33910fe445e92503ae3cc7db67b806a42 (patch)
tree1634846a6c4b82d457f22fa461444c95966c6086 /lib/irc
parentlink: humanize file size (diff)
chores
Diffstat (limited to 'lib/irc')
-rw-r--r--lib/irc/connection.ex6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/irc/connection.ex b/lib/irc/connection.ex
index 3d27f93..fee84c3 100644
--- a/lib/irc/connection.ex
+++ b/lib/irc/connection.ex
@@ -196,10 +196,14 @@ defmodule IRC.Connection do
"?" => :query,
"." => :dot,
"~" => :tilde,
+ "@" => :at,
"++" => :plus_plus,
"--" => :minus_minus,
"!!" => :bang_bang,
"??" => :query_query,
+ ".." => :dot_dot,
+ "~~" => :tilde_tilde,
+ "@@" => :at_at
}
def handle_continue(:connect, state) do
@@ -367,7 +371,7 @@ defmodule IRC.Connection do
end
def handle_info(unhandled, client) do
- IO.puts inspect(unhandled)
+ Logger.debug("unhandled: #{inspect unhandled}")
{:noreply, client}
end