Skip to content

Commit

Permalink
reoved url logging
Browse files Browse the repository at this point in the history
  • Loading branch information
theAl committed Mar 20, 2018
1 parent 5db8015 commit 657b796
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion lib/tackle.ex
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ defmodule Tackle do
exchange = options[:exchange]
routing_key = options[:routing_key]

Logger.info "Connecting to '#{url}'"
{:ok, connection} = AMQP.Connection.open(url)
channel = Tackle.Channel.create(connection)

Expand Down
2 changes: 0 additions & 2 deletions lib/tackle/delayed_retry.ex
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ defmodule Tackle.DelayedRetry do
def retry_count_from_headers([_ | tail]), do: retry_count_from_headers(tail)

def publish(url, queue, payload, options) do
Logger.info "Connecting to '#{url}'"

{:ok, connection} = AMQP.Connection.open(url)
{:ok, channel} = Channel.open(connection)

Expand Down
1 change: 0 additions & 1 deletion lib/tackle/republisher.ex
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ defmodule Tackle.Republisher do
require Logger

def republish(url, queue, exchange, routing_key, count) do
Logger.info "Connecting to '#{url}'"
{:ok, connection} = AMQP.Connection.open(url)
channel = Tackle.Channel.create(connection)

Expand Down

0 comments on commit 657b796

Please sign in to comment.