Skip to content

Commit

Permalink
chore: remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
borgoat committed Mar 16, 2023
1 parent 022689a commit cb2e865
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## Fixed

- Removed some unneeded logs.

## [0.2.0] - 2023-03-16

### Added
Expand Down
7 changes: 0 additions & 7 deletions lib/ex_twelve_data/real_time_prices/subscriptions_manager.ex
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ defmodule ExTwelveData.RealTimePrices.SubscriptionsManager do
alias ExTwelveData.RealTimePrices.SubscriptionsManager
alias ExTwelveData.RealTimePrices.SubscriptionsManager.QuotaTracker

require Logger

@type options :: [option]

@type option ::
Expand Down Expand Up @@ -72,9 +70,6 @@ defmodule ExTwelveData.RealTimePrices.SubscriptionsManager do

new = provider.get_symbols()

Logger.warning(current)
Logger.warning(new)

new_state =
case QuotaTracker.action(current, new, max_subscriptions) do
:noop ->
Expand All @@ -89,8 +84,6 @@ defmodule ExTwelveData.RealTimePrices.SubscriptionsManager do
%{state | tracked: new_tracked}
end

Logger.warning(new_state)

schedule_next_message()
{:noreply, new_state}
end
Expand Down

0 comments on commit cb2e865

Please sign in to comment.