blob: 53acb96a84aaf2f626838c090abf63ec9c9e8272 (
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: :warning]
]
config :logger, :console,
format: "[$level] $message ($metadata)\n",
metadata: [:module]
|