blob: 2cac04451ace2c1d843cda99969792ef82361961 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import Config
config :nostrum,
token: "NTM4MjA0NTYyMTU1MjQxNDgz.GHQMG6.WMNuny5iGpCvUKfLuQx_w9k6zkow7AhNNbw-B4",
gateway_intents: [
:guild_messages,
:guild_message_reactions,
:message_content
]
config :logger,
compile_time_purge_matching: [
[application: :nostrum, level_lower_than: :info]
]
config :logger, :console,
format: "[$level] $message ($metadata)\n",
metadata: [:module]
|