Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```elixir
def deps do
[{:subscribex, "~> 0.8"}]
[{:subscribex, "~> 0.9.1"}]
end
```

Expand Down
4 changes: 2 additions & 2 deletions lib/subscribex/broker.ex
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ defmodule Subscribex.Broker do

def do_channel(nil, link, module) do
Logger.warn("Subscriber application not started, trying reconnect...")
IO.inspect(module, label: "doing channel for module")
Logger.debug("doing channel for module #{inspect(module)}")

interval = apply(module, :config, [:reconnect_interval, :timer.seconds(30)])
:timer.sleep(interval)
Expand All @@ -214,7 +214,7 @@ defmodule Subscribex.Broker do
end

def do_channel(connection_pid, link, module) when is_pid(connection_pid) do
IO.inspect(module, label: "doing channel for module")
Logger.debug("doing channel for module #{inspect(module)}")
connection = %AMQP.Connection{pid: connection_pid}

Logger.debug("Attempting to create channel")
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule Subscribex.Mixfile do

def project do
[app: :subscribex,
version: "0.9.0",
version: "0.9.1",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down