Skip to content

Commit da16b05

Browse files
committed
Move logging unsupported candidate type to debug.
This log is very noisy as every browser offers TCP candidates, which we don't support right now.
1 parent cdace48 commit da16b05

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ as WebRTC multiplexes traffic on a single socket but PRs are welcomed
3030
```elixir
3131
def deps do
3232
[
33-
{:ex_ice, "~> 0.9.0"}
33+
{:ex_ice, "~> 0.9.1"}
3434
]
3535
end
3636
```

lib/ex_ice/ice_agent.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ defmodule ExICE.ICEAgent do
414414

415415
@impl true
416416
def handle_info({_ref, {:unmarshal_task, {:error, reason, raw_cand}}}, state) do
417-
Logger.warning("""
417+
Logger.debug("""
418418
Couldn't unmarshal candidate, reason: #{inspect(reason)}.
419419
Candidate: #{raw_cand}
420420
""")

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule ExICE.MixProject do
22
use Mix.Project
33

4-
@version "0.9.0"
4+
@version "0.9.1"
55
@source_url "https://github.com/elixir-webrtc/ex_ice"
66

77
def project do

0 commit comments

Comments
 (0)