aboutsummaryrefslogtreecommitdiff
path: root/config/config.exs
blob: dd8af659ff7b9bf5ea9ff514776acf0f1c5b3e1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Config

config :thulani_bot,
  env: Mix.env()

config :logger,
  backends: [:console],
  compile_time_purge_matching: [
    [application: :nostrum, level_lower_than: :warn]
  ],
  level: :info

#  handle_sasl_reports: true

config :logger, :console, metadata: :all

import_config("#{Mix.env()}.exs")