Current section
22 Versions
Jump to
Current section
22 Versions
Compare versions
3
files changed
+4
additions
-3
deletions
| @@ -1,6 +1,6 @@ | |
| 1 1 | {<<"links">>,[{<<"Github">>,<<"https://github.com/mrdotb/disco-log">>}]}. |
| 2 2 | {<<"name">>,<<"disco_log">>}. |
| 3 | - {<<"version">>,<<"0.5.1">>}. |
| 3 | + {<<"version">>,<<"0.5.2">>}. |
| 4 4 | {<<"description">>, |
| 5 5 | <<"Use Discord as a logging service and error tracking solution">>}. |
| 6 6 | {<<"elixir">>,<<"~> 1.17">>}. |
| @@ -192,7 +192,8 @@ defmodule DiscoLog.LoggerHandler do | |
| 192 192 | chardata_message, |
| 193 193 | metadata |
| 194 194 | ) do |
| 195 | - Client.log_error(chardata_message, metadata) |
| 195 | + message = IO.iodata_to_binary(chardata_message) |
| 196 | + Client.log_error(message, metadata) |
| 196 197 | :ok |
| 197 198 | end |
| @@ -2,7 +2,7 @@ defmodule DiscoLog.MixProject do | |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 4 | @source_url "https://github.com/mrdotb/disco-log" |
| 5 | - @version "0.5.1" |
| 5 | + @version "0.5.2" |
| 6 6 | |
| 7 7 | def project do |
| 8 8 | [ |