-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.log
More file actions
322 lines (293 loc) · 22.1 KB
/
errors.log
File metadata and controls
322 lines (293 loc) · 22.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
2021-07-14 11:30:43,344 :: ERROR :: > Failed to load extension cogs.utility
ExtensionFailed: Extension 'cogs.utility' raised an error: ModuleNotFoundError: No module named 'flask'
Traceback (most recent call last):
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/cogs/utility.py", line 3, in <module>
import flask
ModuleNotFoundError: No module named 'flask'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.utility' raised an error: ModuleNotFoundError: No module named 'flask'
2021-07-14 11:31:00,261 :: ERROR :: > Failed to load extension cogs.utility
ExtensionFailed: Extension 'cogs.utility' raised an error: NameError: name 'Flask' is not defined
Traceback (most recent call last):
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/cogs/utility.py", line 9, in <module>
app = Flask(__name__)
NameError: name 'Flask' is not defined
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.utility' raised an error: NameError: name 'Flask' is not defined
2021-07-14 11:31:15,109 :: ERROR :: > Failed to load extension cogs.utility
ExtensionFailed: Extension 'cogs.utility' raised an error: SyntaxError: invalid syntax (utility.py, line 3)
Traceback (most recent call last):
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 844, in exec_module
File "<frozen importlib._bootstrap_external>", line 981, in get_code
File "<frozen importlib._bootstrap_external>", line 911, in source_to_code
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/cogs/utility.py", line 3
import flask import Flask
^
SyntaxError: invalid syntax
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.utility' raised an error: SyntaxError: invalid syntax (utility.py, line 3)
2021-07-14 11:31:24,811 :: ERROR :: > Failed to load extension cogs.utility
NoEntryPointError: Extension 'cogs.utility' has no 'setup' function.
Traceback (most recent call last):
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 612, in _load_from_module_spec
setup = getattr(lib, 'setup')
AttributeError: module 'cogs.utility' has no attribute 'setup'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/venv/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 615, in _load_from_module_spec
raise errors.NoEntryPointError(key)
discord.ext.commands.errors.NoEntryPointError: Extension 'cogs.utility' has no 'setup' function.
2021-07-14 11:54:47,771 :: ERROR :: > Failed to load extension cogs.fun
ExtensionFailed: Extension 'cogs.fun' raised an error: TypeError: setup() missing 1 required positional argument: 'bot'
Traceback (most recent call last):
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 605, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/cogs/fun.py", line 18, in <module>
setup = Fun.setup()
TypeError: setup() missing 1 required positional argument: 'bot'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 677, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 608, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.fun' raised an error: TypeError: setup() missing 1 required positional argument: 'bot'
2021-07-19 21:19:36,868 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-07-19 21:19:39,443 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:24:45,367 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 848, in exec_module
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed
File "/media/hydrostaticcog/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydrostaticcog/.local/lib/python3.8/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-07-19 21:24:47,922 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:25:04,150 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:29:03,271 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:29:59,676 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:32:44,451 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:33:03,766 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:34:11,072 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:34:58,039 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:35:11,896 :: WARNING :: The status channel for the support server command is configured improperly.
2021-07-19 21:36:27,648 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:43:41,353 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-10-19 14:43:44,082 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:44:55,554 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-10-19 14:44:58,194 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:46:14,850 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-10-19 14:46:17,637 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:46:41,521 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-10-19 14:46:44,110 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:48:40,754 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-10-19 14:48:43,416 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:48:56,083 :: ERROR :: > Failed to load extension cogs.rest_api
ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 606, in _load_from_module_spec
spec.loader.exec_module(lib)
File "<frozen importlib._bootstrap_external>", line 850, in exec_module
File "<frozen importlib._bootstrap>", line 228, in _call_with_frames_removed
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/rest_api.py", line 7, in <module>
import aiohttp_cors
ModuleNotFoundError: No module named 'aiohttp_cors'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/main.py", line 46, in <module>
bot.load_extension(cog_name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 678, in load_extension
self._load_from_module_spec(spec, name)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 609, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'cogs.rest_api' raised an error: ModuleNotFoundError: No module named 'aiohttp_cors'
2021-10-19 14:48:58,570 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:53:31,064 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:54:15,294 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:54:41,368 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:54:56,703 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:56:01,142 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 14:56:52,373 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:23:44,007 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:26:04,632 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:26:08,576 :: ERROR :: 772889538300608512 - #『🤖』cmds :: <hydrostaticcog#4886> Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/core.py", line 85, in wrapped
ret = await coro(*args, **kwargs)
File "/run/media/hydro/D/Code/DSBOTS/dOGbot/cogs/utility.py", line 21, in ping
embed.addField(name="API Ping", value=time_delta, inline=False)
AttributeError: 'Embed' object has no attribute 'addField'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/bot.py", line 939, in invoke
await ctx.command.invoke(ctx)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/core.py", line 863, in invoke
await injected(*ctx.args, **ctx.kwargs)
File "/home/hydro/.local/lib/python3.9/site-packages/discord/ext/commands/core.py", line 94, in wrapped
raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Embed' object has no attribute 'addField'
2021-10-19 15:27:01,023 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:28:28,544 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:29:08,743 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:29:57,997 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:30:43,873 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:45:43,907 :: WARNING :: The status channel for the support server command is configured improperly.
2021-10-19 15:47:05,513 :: WARNING :: The status channel for the support server command is configured improperly.