Skip to content

Instantly share code, notes, and snippets.

@josevalim
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josevalim/bea8fe71fbfcdcf9daa8 to your computer and use it in GitHub Desktop.
Save josevalim/bea8fe71fbfcdcf9daa8 to your computer and use it in GitHub Desktop.
# config/config.exs
use Mix.Config
config :lager,
handlers: [
lager_console_backend: [:info, {:lager_default_formatter, [:time, ' [', :severity, '] ', :message, '\n']}]
],
crash_log: :undefined,
error_logger_hwm: 150
config :stout,
truncation_size: 4096,
level: :info
import_config "#{Mix.env}.exs"
# config/dev.exs
use Mix.Config
config :stout, level: :debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment