Skip to content

Commit

Permalink
Problem: too much output sasl logging
Browse files Browse the repository at this point in the history
Solution: remove sasl and add config for logger
Fixes #5
  • Loading branch information
c-rack committed Oct 31, 2015
1 parent 49adff2 commit 4af5814
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions config/config.exs
@@ -0,0 +1,6 @@

use Mix.Config

config :logger, :level, :warn
config :logger, :handle_otp_reports, true

4 changes: 2 additions & 2 deletions mix.exs 100644 → 100755
Expand Up @@ -15,15 +15,15 @@ defmodule Exzmp.Mixfile do
def application do
[
mod: { Exzmq.App, [] },
applications: [:sasl, :gen_listener_tcp, :erlzmq]
applications: [:logger, :gen_listener_tcp, :erlzmq]
]
end
else
# Configuration for the OTP application
def application do
[
mod: { Exzmq.App, [] },
applications: [:sasl, :gen_listener_tcp]
applications: [:logger, :gen_listener_tcp]
]
end
end
Expand Down

0 comments on commit 4af5814

Please sign in to comment.