· 6 years ago · Oct 19, 2019, 09:44 PM
1[2019-10-19 15:48:44.791000] [Permissions] [INFO] Initializing permissions module...
2[2019-10-19 15:48:44.831000] [AegiSQL] [DEBUG] Executing SQL statement
3 CREATE TABLE IF NOT EXISTS bp_permissions_groups_permissions (
4 group_name TEXT,
5 permission TEXT,
6 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name)
7 );
8 ...
9[2019-10-19 15:48:44.834000] [AegiSQL] [DEBUG] Executing SQL statement
10 CREATE TABLE IF NOT EXISTS bp_permissions_groups_inheritances (
11 group_name TEXT,
12 other_group TEXT,
13 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
14 FOREIGN KEY(other_group) REFERENCES bp_permissions_groups(group_name)
15 PRIMARY KEY(group_name, other_group)
16 );
17 ...
18[2019-10-19 15:48:44.843000] [AegiSQL] [DEBUG] Executing SQL statement
19 CREATE TABLE IF NOT EXISTS bp_permissions_users_groups (
20 userid TEXT,
21 group_name TEXT,
22 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
23 PRIMARY KEY(userid, group_name)
24 );
25 ...
26[2019-10-19 15:48:44.846000] [AegiSQL] [DEBUG] Executing SQL statement
27 CREATE TABLE IF NOT EXISTS bp_permissions_users_permissions (
28 userid TEXT,
29 permission TEXT
30 );
31 ...
32[2019-10-19 15:48:44.850000] [AegiSQL] [DEBUG] Executing SQL statement
33 CREATE TABLE IF NOT EXISTS bp_permissions_history (
34 source TEXT,
35 userid TEXT,
36 permission TEXT,
37 action TEXT,
38 date INTEGER
39 );
40 ...
41[2019-10-19 15:48:44.853000] [AegiSQL] [DEBUG] Executing SQL statement
42 CREATE TABLE IF NOT EXISTS bp_placeholders (
43 key TEXT PRIMARY KEY,
44 value TEXT
45 );
46 ...
47[2019-10-19 15:48:44.855000] [AegiSQL] [DEBUG] Executing SQL statement
48 CREATE TABLE IF NOT EXISTS bp_song_history (
49 requestant TEXT,
50 requestant_display TEXT,
51 date_requested TEXT,
52 album_requested TEXT,
53 artist_requested TEXT,
54 title_requested TEXT
55 );
56 ...
57[2019-10-19 15:48:44.859000] [AegiSQL] [DEBUG] Executing SQL statement
58 CREATE TABLE IF NOT EXISTS bp_user_cooldowns (
59 object TEXT,
60 userid TEXT,
61 last_cooldown INTEGER,
62 next_use TEXT,
63 comment TEXT,
64 PRIMARY KEY(object, userid)
65 );
66 ...
67[2019-10-19 15:48:44.862000] [AegiSQL] [DEBUG] Executing SQL statement
68 CREATE TABLE IF NOT EXISTS bp_global_cooldowns (
69 object TEXT,
70 last_cooldown INTEGER,
71 next_use TEXT,
72 comment TEXT,
73 PRIMARY KEY(object)
74 );
75 ...
76[2019-10-19 15:48:44.876000] [CommandLoader] [INFO] Adding command AddCanCommand to command list
77[2019-10-19 15:48:44.880000] [CommandLoader] [INFO] Adding command HugCommand to command list
78[2019-10-19 15:48:44.886000] [CommandLoader] [INFO] Adding command PermissionBaseCommand to command list
79[2019-10-19 15:48:44.889000] [CommandLoader] [INFO] Adding command AdvancedSearchCommand to command list
80[2019-10-19 15:48:44.889000] [CommandLoader] [INFO] Adding command SearchCommand to command list
81[2019-10-19 15:48:44.892000] [CommandLoader] [INFO] Adding command SongInfoCommand to command list
82[2019-10-19 15:48:44.902000] [CommandLoader] [INFO] Adding command AdvancedSongRequestCommand to command list
83[2019-10-19 15:48:44.902000] [CommandLoader] [INFO] Adding command ConfirmSongRequestCommand to command list
84[2019-10-19 15:48:44.903000] [CommandLoader] [INFO] Adding command SongRequestCommand to command list
85[2019-10-19 15:48:44.904000] [Byers+] [DEBUG] Toggled Byers+ on...
86[2019-10-19 15:48:59.045000] [CommandLoader] [INFO] Executing command !songrequest atomic bonsai with class <SongRequestCommand object at 0x00000000000000E5>...
87[2019-10-19 15:48:59.054000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
88[2019-10-19 15:48:59.056000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
89[2019-10-19 15:48:59.057000] [turntechGodhead] [DEBUG] Is on cooldown: 0
90[2019-10-19 15:48:59.073000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
91[2019-10-19 15:48:59.074000] [turntechGodhead] [DEBUG] Is on cooldown: 0
92[2019-10-19 15:48:59.077000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
93[2019-10-19 15:49:01.828000] [CommandLoader] [INFO] Executing command !ar title:Minute+to+Win+It with class <AdvancedSongRequestCommand object at 0x00000000000000E6>...
94[2019-10-19 15:49:01.830000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
95[2019-10-19 15:49:01.830000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
96[2019-10-19 15:49:01.831000] [turntechGodhead] [DEBUG] Is on cooldown: 0
97[2019-10-19 15:49:01.840000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
98[2019-10-19 15:49:01.842000] [turntechGodhead] [DEBUG] Is on cooldown: 0
99[2019-10-19 15:49:01.844000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
100[2019-10-19 15:49:05.963000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000000E7>...
101[2019-10-19 15:49:05.963000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
102[2019-10-19 15:49:05.964000] [turntechGodhead] [DEBUG] Is on cooldown: 0
103[2019-10-19 15:49:05.965000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
104[2019-10-19 15:49:05.966000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416369)
105[2019-10-19 15:49:05.966000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
106[2019-10-19 15:49:05.975000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416369)
107[2019-10-19 15:49:05.976000] [Placeholders] [DEBUG] Updating placeholder cancount to 416370
108[2019-10-19 15:49:05.977000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
109[2019-10-19 15:49:05.978000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
110[2019-10-19 15:49:05.979000] [Placeholders] [DEBUG] Replacing $cancount with 416370 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
111[2019-10-19 15:49:05.979000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
112[2019-10-19 15:49:05.984000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 15:49:40.980000)
113[2019-10-19 15:49:05.984000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
114[2019-10-19 15:49:05.985000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
115[2019-10-19 15:49:07.604000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x00000000000000E8>...
116[2019-10-19 15:49:07.635000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
117[2019-10-19 15:49:07.637000] [turntechGodhead] [DEBUG] Is on cooldown: 0
118[2019-10-19 15:49:07.640000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UCzYo3Yem5_i031TKqUzgJgQ to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:19:20.640000)
119[2019-10-19 15:49:07.641000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
120[2019-10-19 15:49:07.644000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
121[2019-10-19 15:49:07.649000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_2584 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:19:20.649000)
122[2019-10-19 15:49:07.650000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
123[2019-10-19 15:49:07.650000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
124[2019-10-19 15:49:07.652000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
125[2019-10-19 15:49:16.918000] [CommandLoader] [INFO] Executing command !sr with class <SongRequestCommand object at 0x00000000000000E5>...
126[2019-10-19 15:49:16.919000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
127[2019-10-19 15:49:16.920000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
128[2019-10-19 15:49:16.921000] [turntechGodhead] [DEBUG] Is on cooldown: 0
129[2019-10-19 15:49:16.921000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
130[2019-10-19 15:50:05.196000] [CommandLoader] [INFO] Executing command !songrequest with class <SongRequestCommand object at 0x00000000000000E5>...
131[2019-10-19 15:50:05.197000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
132[2019-10-19 15:50:05.198000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
133[2019-10-19 15:50:05.198000] [turntechGodhead] [DEBUG] Is on cooldown: 0
134[2019-10-19 15:50:05.198000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
135[2019-10-19 15:50:13.294000] [CommandLoader] [INFO] Executing command !songrequest test with class <SongRequestCommand object at 0x00000000000000E5>...
136[2019-10-19 15:50:13.295000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
137[2019-10-19 15:50:13.296000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
138[2019-10-19 15:50:13.299000] [turntechGodhead] [DEBUG] Is on cooldown: 0
139[2019-10-19 15:50:13.310000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
140[2019-10-19 15:50:13.311000] [turntechGodhead] [DEBUG] Is on cooldown: 0
141[2019-10-19 15:50:13.312000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
142[2019-10-19 15:50:29.571000] [CommandLoader] [INFO] Executing command !songrequest time on my side with class <SongRequestCommand object at 0x00000000000000E5>...
143[2019-10-19 15:50:29.573000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
144[2019-10-19 15:50:29.573000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
145[2019-10-19 15:50:29.574000] [turntechGodhead] [DEBUG] Is on cooldown: 0
146[2019-10-19 15:50:29.589000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
147[2019-10-19 15:50:29.589000] [turntechGodhead] [DEBUG] Is on cooldown: 0
148[2019-10-19 15:50:29.590000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
149[2019-10-19 15:50:40.072000] [CommandLoader] [INFO] Executing command !songrequest Upgrade Your Corn Flake with class <SongRequestCommand object at 0x00000000000000E5>...
150[2019-10-19 15:50:40.073000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
151[2019-10-19 15:50:40.074000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
152[2019-10-19 15:50:40.075000] [turntechGodhead] [DEBUG] Is on cooldown: 0
153[2019-10-19 15:50:40.092000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
154[2019-10-19 15:50:40.094000] [turntechGodhead] [DEBUG] Is on cooldown: 0
155[2019-10-19 15:50:40.094000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
156[2019-10-19 15:50:48.195000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x00000000000000E8>...
157[2019-10-19 15:50:48.196000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
158[2019-10-19 15:50:48.197000] [turntechGodhead] [DEBUG] Is on cooldown: 0
159[2019-10-19 15:50:48.201000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UC_MMi4Kb-AQwSE0UOJnnTNA to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:21:01.201000)
160[2019-10-19 15:50:48.202000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
161[2019-10-19 15:50:48.203000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
162[2019-10-19 15:50:48.256000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_3101 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:21:01.256000)
163[2019-10-19 15:50:48.256000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
164[2019-10-19 15:50:48.257000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
165[2019-10-19 15:50:48.259000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
166[2019-10-19 15:51:07.946000] [CommandLoader] [INFO] Executing command !songrequest Upgrade your corn flake with class <SongRequestCommand object at 0x00000000000000E5>...
167[2019-10-19 15:51:07.947000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
168[2019-10-19 15:51:07.948000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
169[2019-10-19 15:51:07.949000] [turntechGodhead] [DEBUG] Is on cooldown: 0
170[2019-10-19 15:51:07.956000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
171[2019-10-19 15:51:07.968000] [turntechGodhead] [DEBUG] Is on cooldown: 5393
172[2019-10-19 15:51:07.969000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
173[2019-10-19 15:51:07.970000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
174[2019-10-19 15:51:07.971000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
175[2019-10-19 15:51:07.972000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
176[2019-10-19 15:51:14.901000] [CommandLoader] [INFO] Executing command !ar title:time+on+my+side with class <AdvancedSongRequestCommand object at 0x00000000000000E6>...
177[2019-10-19 15:51:14.902000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
178[2019-10-19 15:51:14.902000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
179[2019-10-19 15:51:14.903000] [turntechGodhead] [DEBUG] Is on cooldown: 0
180[2019-10-19 15:51:14.913000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
181[2019-10-19 15:51:14.914000] [turntechGodhead] [DEBUG] Is on cooldown: 0
182[2019-10-19 15:51:14.914000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
183[2019-10-19 15:51:20.774000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x00000000000000E8>...
184[2019-10-19 15:51:20.774000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
185[2019-10-19 15:51:20.775000] [turntechGodhead] [DEBUG] Is on cooldown: 0
186[2019-10-19 15:51:20.777000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UCnuV-iKdgQ0z43z7VkbMRqQ to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:21:33.777000)
187[2019-10-19 15:51:20.778000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
188[2019-10-19 15:51:20.779000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
189[2019-10-19 15:51:20.788000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_2583 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:21:33.788000)
190[2019-10-19 15:51:20.788000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
191[2019-10-19 15:51:20.789000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
192[2019-10-19 15:51:20.794000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
193[2019-10-19 15:52:50.445000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000000E7>...
194[2019-10-19 15:52:50.446000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
195[2019-10-19 15:52:50.447000] [turntechGodhead] [DEBUG] Is on cooldown: 0
196[2019-10-19 15:52:50.447000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
197[2019-10-19 15:52:50.447000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416370)
198[2019-10-19 15:52:50.448000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
199[2019-10-19 15:52:50.448000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416370)
200[2019-10-19 15:52:50.448000] [Placeholders] [DEBUG] Updating placeholder cancount to 416371
201[2019-10-19 15:52:50.449000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
202[2019-10-19 15:52:50.501000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
203[2019-10-19 15:52:50.501000] [Placeholders] [DEBUG] Replacing $cancount with 416371 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
204[2019-10-19 15:52:50.502000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
205[2019-10-19 15:52:50.503000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 15:53:25.503000)
206[2019-10-19 15:52:50.503000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
207[2019-10-19 15:52:50.504000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
208[2019-10-19 15:53:02.085000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
209[2019-10-19 15:53:02.086000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
210[2019-10-19 15:53:02.087000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
211[2019-10-19 15:53:02.088000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
212[2019-10-19 15:53:02.091000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
213[2019-10-19 15:53:02.096000] [CommandLoader] [INFO] Executing command !hug Cansci Xigori It's the Cansci song! with class <HugCommand object at 0x00000000000000E9>...
214[2019-10-19 15:53:02.098000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
215[2019-10-19 15:53:02.098000] [Placeholders] [DEBUG] Requested placeholder hugcount not found
216[2019-10-19 15:53:02.098000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
217[2019-10-19 15:53:02.099000] [Placeholders] [DEBUG] Requested placeholder hugcount not found
218[2019-10-19 15:53:02.099000] [Placeholders] [DEBUG] Creating new placeholder hugcount with initial value 1
219[2019-10-19 15:53:02.100000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_placeholders VALUES (?, ?)...
220[2019-10-19 15:53:02.102000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
221[2019-10-19 15:53:06.205000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
222[2019-10-19 15:53:06.206000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
223[2019-10-19 15:53:06.206000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
224[2019-10-19 15:53:06.208000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
225[2019-10-19 15:53:06.211000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
226[2019-10-19 15:53:06.215000] [CommandLoader] [INFO] Executing command !hug luminantaegis[pre-scratch] with class <HugCommand object at 0x00000000000000E9>...
227[2019-10-19 15:53:06.215000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
228[2019-10-19 15:53:06.216000] [Placeholders] [DEBUG] Requested placeholder hugcount (value: 1)
229[2019-10-19 15:53:06.216000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
230[2019-10-19 15:53:06.217000] [Placeholders] [DEBUG] Requested placeholder hugcount (value: 1)
231[2019-10-19 15:53:06.217000] [Placeholders] [DEBUG] Updating placeholder hugcount to 2
232[2019-10-19 15:53:06.218000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
233[2019-10-19 15:53:06.219000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
234[2019-10-19 15:53:12.703000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
235[2019-10-19 15:53:12.704000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
236[2019-10-19 15:53:12.705000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
237[2019-10-19 15:53:12.706000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
238[2019-10-19 15:53:12.710000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
239[2019-10-19 15:53:26.774000] [CommandLoader] [INFO] Executing command !hug everyone with class <HugCommand object at 0x00000000000000E9>...
240[2019-10-19 15:53:26.775000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
241[2019-10-19 15:53:26.777000] [Placeholders] [DEBUG] Requested placeholder hugcount (value: 2)
242[2019-10-19 15:53:26.778000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
243[2019-10-19 15:53:26.778000] [Placeholders] [DEBUG] Requested placeholder hugcount (value: 2)
244[2019-10-19 15:53:26.779000] [Placeholders] [DEBUG] Updating placeholder hugcount to 3
245[2019-10-19 15:53:26.779000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
246[2019-10-19 15:53:26.781000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
247[2019-10-19 15:54:50.375000] [CommandLoader] [INFO] Executing command !hug everyone with class <HugCommand object at 0x00000000000000E9>...
248[2019-10-19 15:54:50.377000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
249[2019-10-19 15:54:50.378000] [Placeholders] [DEBUG] Requested placeholder hugcount (value: 3)
250[2019-10-19 15:54:50.379000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
251[2019-10-19 15:54:50.379000] [Placeholders] [DEBUG] Requested placeholder hugcount (value: 3)
252[2019-10-19 15:54:50.380000] [Placeholders] [DEBUG] Updating placeholder hugcount to 4
253[2019-10-19 15:54:50.381000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
254[2019-10-19 15:54:50.389000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
255[2019-10-19 15:54:55.867000] [Byers+] [DEBUG] Toggled Byers+ off...
256[2019-10-19 15:55:12.831000] [Byers+] [INFO] Unloading Byers+...
257[2019-10-19 15:59:00.179000] [Permissions] [INFO] Initializing permissions module...
258[2019-10-19 15:59:00.337000] [AegiSQL] [DEBUG] Executing SQL statement
259 CREATE TABLE IF NOT EXISTS bp_permissions_groups_permissions (
260 group_name TEXT,
261 permission TEXT,
262 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name)
263 );
264 ...
265[2019-10-19 15:59:00.337000] [AegiSQL] [DEBUG] Executing SQL statement
266 CREATE TABLE IF NOT EXISTS bp_permissions_groups_inheritances (
267 group_name TEXT,
268 other_group TEXT,
269 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
270 FOREIGN KEY(other_group) REFERENCES bp_permissions_groups(group_name)
271 PRIMARY KEY(group_name, other_group)
272 );
273 ...
274[2019-10-19 15:59:00.338000] [AegiSQL] [DEBUG] Executing SQL statement
275 CREATE TABLE IF NOT EXISTS bp_permissions_users_groups (
276 userid TEXT,
277 group_name TEXT,
278 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
279 PRIMARY KEY(userid, group_name)
280 );
281 ...
282[2019-10-19 15:59:00.338000] [AegiSQL] [DEBUG] Executing SQL statement
283 CREATE TABLE IF NOT EXISTS bp_permissions_users_permissions (
284 userid TEXT,
285 permission TEXT
286 );
287 ...
288[2019-10-19 15:59:00.339000] [AegiSQL] [DEBUG] Executing SQL statement
289 CREATE TABLE IF NOT EXISTS bp_permissions_history (
290 source TEXT,
291 userid TEXT,
292 permission TEXT,
293 action TEXT,
294 date INTEGER
295 );
296 ...
297[2019-10-19 15:59:00.341000] [AegiSQL] [DEBUG] Executing SQL statement
298 CREATE TABLE IF NOT EXISTS bp_placeholders (
299 key TEXT PRIMARY KEY,
300 value TEXT
301 );
302 ...
303[2019-10-19 15:59:00.344000] [AegiSQL] [DEBUG] Executing SQL statement
304 CREATE TABLE IF NOT EXISTS bp_song_history (
305 requestant TEXT,
306 requestant_display TEXT,
307 date_requested TEXT,
308 album_requested TEXT,
309 artist_requested TEXT,
310 title_requested TEXT
311 );
312 ...
313[2019-10-19 15:59:00.346000] [AegiSQL] [DEBUG] Executing SQL statement
314 CREATE TABLE IF NOT EXISTS bp_user_cooldowns (
315 object TEXT,
316 userid TEXT,
317 last_cooldown INTEGER,
318 next_use TEXT,
319 comment TEXT,
320 PRIMARY KEY(object, userid)
321 );
322 ...
323[2019-10-19 15:59:00.347000] [AegiSQL] [DEBUG] Executing SQL statement
324 CREATE TABLE IF NOT EXISTS bp_global_cooldowns (
325 object TEXT,
326 last_cooldown INTEGER,
327 next_use TEXT,
328 comment TEXT,
329 PRIMARY KEY(object)
330 );
331 ...
332[2019-10-19 15:59:00.356000] [CommandLoader] [INFO] Adding command AddCanCommand to command list
333[2019-10-19 15:59:00.361000] [CommandLoader] [INFO] Adding command HugCommand to command list
334[2019-10-19 15:59:00.367000] [CommandLoader] [INFO] Adding command PermissionBaseCommand to command list
335[2019-10-19 15:59:00.371000] [CommandLoader] [INFO] Adding command AdvancedSearchCommand to command list
336[2019-10-19 15:59:00.372000] [CommandLoader] [INFO] Adding command SearchCommand to command list
337[2019-10-19 15:59:00.394000] [CommandLoader] [INFO] Adding command SongInfoCommand to command list
338[2019-10-19 15:59:00.398000] [CommandLoader] [INFO] Adding command AdvancedSongRequestCommand to command list
339[2019-10-19 15:59:00.399000] [CommandLoader] [INFO] Adding command ConfirmSongRequestCommand to command list
340[2019-10-19 15:59:00.401000] [CommandLoader] [INFO] Adding command SongRequestCommand to command list
341[2019-10-19 15:59:00.405000] [Byers+] [DEBUG] Toggled Byers+ off...
342[2019-10-19 16:03:01.138000] [Byers+] [INFO] Unloading Byers+...
343[2019-10-19 16:03:01.587000] [Permissions] [INFO] Initializing permissions module...
344[2019-10-19 16:03:01.591000] [AegiSQL] [DEBUG] Executing SQL statement
345 CREATE TABLE IF NOT EXISTS bp_permissions_groups_permissions (
346 group_name TEXT,
347 permission TEXT,
348 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name)
349 );
350 ...
351[2019-10-19 16:03:01.595000] [AegiSQL] [DEBUG] Executing SQL statement
352 CREATE TABLE IF NOT EXISTS bp_permissions_groups_inheritances (
353 group_name TEXT,
354 other_group TEXT,
355 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
356 FOREIGN KEY(other_group) REFERENCES bp_permissions_groups(group_name)
357 PRIMARY KEY(group_name, other_group)
358 );
359 ...
360[2019-10-19 16:03:01.596000] [AegiSQL] [DEBUG] Executing SQL statement
361 CREATE TABLE IF NOT EXISTS bp_permissions_users_groups (
362 userid TEXT,
363 group_name TEXT,
364 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
365 PRIMARY KEY(userid, group_name)
366 );
367 ...
368[2019-10-19 16:03:01.597000] [AegiSQL] [DEBUG] Executing SQL statement
369 CREATE TABLE IF NOT EXISTS bp_permissions_users_permissions (
370 userid TEXT,
371 permission TEXT
372 );
373 ...
374[2019-10-19 16:03:01.598000] [AegiSQL] [DEBUG] Executing SQL statement
375 CREATE TABLE IF NOT EXISTS bp_permissions_history (
376 source TEXT,
377 userid TEXT,
378 permission TEXT,
379 action TEXT,
380 date INTEGER
381 );
382 ...
383[2019-10-19 16:03:01.602000] [AegiSQL] [DEBUG] Executing SQL statement
384 CREATE TABLE IF NOT EXISTS bp_placeholders (
385 key TEXT PRIMARY KEY,
386 value TEXT
387 );
388 ...
389[2019-10-19 16:03:01.604000] [AegiSQL] [DEBUG] Executing SQL statement
390 CREATE TABLE IF NOT EXISTS bp_song_history (
391 requestant TEXT,
392 requestant_display TEXT,
393 date_requested TEXT,
394 album_requested TEXT,
395 artist_requested TEXT,
396 title_requested TEXT
397 );
398 ...
399[2019-10-19 16:03:01.607000] [AegiSQL] [DEBUG] Executing SQL statement
400 CREATE TABLE IF NOT EXISTS bp_user_cooldowns (
401 object TEXT,
402 userid TEXT,
403 last_cooldown INTEGER,
404 next_use TEXT,
405 comment TEXT,
406 PRIMARY KEY(object, userid)
407 );
408 ...
409[2019-10-19 16:03:01.607000] [AegiSQL] [DEBUG] Executing SQL statement
410 CREATE TABLE IF NOT EXISTS bp_global_cooldowns (
411 object TEXT,
412 last_cooldown INTEGER,
413 next_use TEXT,
414 comment TEXT,
415 PRIMARY KEY(object)
416 );
417 ...
418[2019-10-19 16:03:01.628000] [CommandLoader] [INFO] Adding command AddCanCommand to command list
419[2019-10-19 16:03:01.632000] [CommandLoader] [INFO] Adding command PermissionBaseCommand to command list
420[2019-10-19 16:03:01.634000] [CommandLoader] [INFO] Adding command AdvancedSearchCommand to command list
421[2019-10-19 16:03:01.635000] [CommandLoader] [INFO] Adding command SearchCommand to command list
422[2019-10-19 16:03:01.637000] [CommandLoader] [INFO] Adding command SongInfoCommand to command list
423[2019-10-19 16:03:01.640000] [CommandLoader] [INFO] Adding command AdvancedSongRequestCommand to command list
424[2019-10-19 16:03:01.640000] [CommandLoader] [INFO] Adding command ConfirmSongRequestCommand to command list
425[2019-10-19 16:03:01.641000] [CommandLoader] [INFO] Adding command SongRequestCommand to command list
426[2019-10-19 16:03:01.642000] [Byers+] [DEBUG] Toggled Byers+ off...
427[2019-10-19 16:03:27.503000] [Byers+] [INFO] Reloading settings...
428[2019-10-19 16:03:32.268000] [Byers+] [DEBUG] Toggled Byers+ on...
429[2019-10-19 16:03:33.110000] [Byers+] [INFO] Unloading Byers+...
430[2019-10-19 16:03:33.573000] [Permissions] [INFO] Initializing permissions module...
431[2019-10-19 16:03:33.575000] [AegiSQL] [DEBUG] Executing SQL statement
432 CREATE TABLE IF NOT EXISTS bp_permissions_groups_permissions (
433 group_name TEXT,
434 permission TEXT,
435 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name)
436 );
437 ...
438[2019-10-19 16:03:33.577000] [AegiSQL] [DEBUG] Executing SQL statement
439 CREATE TABLE IF NOT EXISTS bp_permissions_groups_inheritances (
440 group_name TEXT,
441 other_group TEXT,
442 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
443 FOREIGN KEY(other_group) REFERENCES bp_permissions_groups(group_name)
444 PRIMARY KEY(group_name, other_group)
445 );
446 ...
447[2019-10-19 16:03:33.578000] [AegiSQL] [DEBUG] Executing SQL statement
448 CREATE TABLE IF NOT EXISTS bp_permissions_users_groups (
449 userid TEXT,
450 group_name TEXT,
451 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
452 PRIMARY KEY(userid, group_name)
453 );
454 ...
455[2019-10-19 16:03:33.578000] [AegiSQL] [DEBUG] Executing SQL statement
456 CREATE TABLE IF NOT EXISTS bp_permissions_users_permissions (
457 userid TEXT,
458 permission TEXT
459 );
460 ...
461[2019-10-19 16:03:33.579000] [AegiSQL] [DEBUG] Executing SQL statement
462 CREATE TABLE IF NOT EXISTS bp_permissions_history (
463 source TEXT,
464 userid TEXT,
465 permission TEXT,
466 action TEXT,
467 date INTEGER
468 );
469 ...
470[2019-10-19 16:03:33.581000] [AegiSQL] [DEBUG] Executing SQL statement
471 CREATE TABLE IF NOT EXISTS bp_placeholders (
472 key TEXT PRIMARY KEY,
473 value TEXT
474 );
475 ...
476[2019-10-19 16:03:33.584000] [AegiSQL] [DEBUG] Executing SQL statement
477 CREATE TABLE IF NOT EXISTS bp_song_history (
478 requestant TEXT,
479 requestant_display TEXT,
480 date_requested TEXT,
481 album_requested TEXT,
482 artist_requested TEXT,
483 title_requested TEXT
484 );
485 ...
486[2019-10-19 16:03:33.587000] [AegiSQL] [DEBUG] Executing SQL statement
487 CREATE TABLE IF NOT EXISTS bp_user_cooldowns (
488 object TEXT,
489 userid TEXT,
490 last_cooldown INTEGER,
491 next_use TEXT,
492 comment TEXT,
493 PRIMARY KEY(object, userid)
494 );
495 ...
496[2019-10-19 16:03:33.588000] [AegiSQL] [DEBUG] Executing SQL statement
497 CREATE TABLE IF NOT EXISTS bp_global_cooldowns (
498 object TEXT,
499 last_cooldown INTEGER,
500 next_use TEXT,
501 comment TEXT,
502 PRIMARY KEY(object)
503 );
504 ...
505[2019-10-19 16:03:33.597000] [CommandLoader] [INFO] Adding command AddCanCommand to command list
506[2019-10-19 16:03:33.600000] [CommandLoader] [INFO] Adding command PermissionBaseCommand to command list
507[2019-10-19 16:03:33.602000] [CommandLoader] [INFO] Adding command AdvancedSearchCommand to command list
508[2019-10-19 16:03:33.603000] [CommandLoader] [INFO] Adding command SearchCommand to command list
509[2019-10-19 16:03:33.605000] [CommandLoader] [INFO] Adding command SongInfoCommand to command list
510[2019-10-19 16:03:33.620000] [CommandLoader] [INFO] Adding command AdvancedSongRequestCommand to command list
511[2019-10-19 16:03:33.621000] [CommandLoader] [INFO] Adding command ConfirmSongRequestCommand to command list
512[2019-10-19 16:03:33.622000] [CommandLoader] [INFO] Adding command SongRequestCommand to command list
513[2019-10-19 16:03:33.627000] [Byers+] [DEBUG] Toggled Byers+ on...
514[2019-10-19 16:04:02.218000] [CommandLoader] [INFO] Executing command !ar ablum:moons+of+theseus title:violet+and+gold with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
515[2019-10-19 16:04:02.234000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
516[2019-10-19 16:04:02.252000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
517[2019-10-19 16:04:02.295000] [turntechGodhead] [DEBUG] Is on cooldown: 0
518[2019-10-19 16:04:02.321000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
519[2019-10-19 16:04:02.322000] [turntechGodhead] [DEBUG] Is on cooldown: 0
520[2019-10-19 16:04:02.331000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
521[2019-10-19 16:04:08.322000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x0000000000000143>...
522[2019-10-19 16:04:08.330000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
523[2019-10-19 16:04:08.331000] [turntechGodhead] [DEBUG] Is on cooldown: 0
524[2019-10-19 16:04:08.347000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UCo9n8QGwOON3uUF0oYF4xuw to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:34:21.342000)
525[2019-10-19 16:04:08.348000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
526[2019-10-19 16:04:08.349000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
527[2019-10-19 16:04:08.399000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_1846 to 2 hours, 15 minutes, 19 seconds (next use at 2019-10-19 18:19:27.398000)
528[2019-10-19 16:04:08.399000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
529[2019-10-19 16:04:08.401000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
530[2019-10-19 16:04:08.404000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
531[2019-10-19 16:04:11.822000] [CommandLoader] [INFO] Executing command !ar with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
532[2019-10-19 16:04:11.823000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
533[2019-10-19 16:04:11.824000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
534[2019-10-19 16:04:11.825000] [turntechGodhead] [DEBUG] Is on cooldown: 0
535[2019-10-19 16:04:11.827000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
536[2019-10-19 16:04:14.151000] [CommandLoader] [INFO] Executing command !ar ablum:moons+of+theseus title:violet+and+gold with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
537[2019-10-19 16:04:14.154000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
538[2019-10-19 16:04:14.164000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
539[2019-10-19 16:04:14.165000] [turntechGodhead] [DEBUG] Is on cooldown: 4607
540[2019-10-19 16:04:14.166000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
541[2019-10-19 16:04:14.174000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
542[2019-10-19 16:04:14.180000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
543[2019-10-19 16:04:14.181000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
544[2019-10-19 16:04:14.182000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
545[2019-10-19 16:04:43.214000] [CommandLoader] [INFO] Executing command !addsong Violet and Gold with class <SongRequestCommand object at 0x0000000000000144>...
546[2019-10-19 16:04:43.219000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
547[2019-10-19 16:04:43.221000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
548[2019-10-19 16:04:43.222000] [turntechGodhead] [DEBUG] Is on cooldown: 0
549[2019-10-19 16:04:43.234000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_1846 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:34:56.234000)
550[2019-10-19 16:04:43.234000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
551[2019-10-19 16:04:43.235000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
552[2019-10-19 16:04:43.253000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
553[2019-10-19 16:05:37.916000] [CommandLoader] [INFO] Executing command $bpp user UC_MMi4Kb-AQwSE0UOJnnTNA add songrequest.skip_cooldown with class <PermissionBaseCommand object at 0x0000000000000145>...
554[2019-10-19 16:05:37.923000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_permissions_users_permissions VALUES (?, ?);...
555[2019-10-19 16:05:37.976000] [Permissions] [INFO] Added permission songrequest.skip_cooldown to user UC_MMi4Kb-AQwSE0UOJnnTNA
556[2019-10-19 16:05:37.977000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
557[2019-10-19 16:05:50.856000] [CommandLoader] [INFO] Executing command !ar ablum:moons+of+theseus title:violet+and+gold with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
558[2019-10-19 16:05:50.857000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
559[2019-10-19 16:05:50.858000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
560[2019-10-19 16:05:50.859000] [turntechGodhead] [DEBUG] Is on cooldown: 4510
561[2019-10-19 16:05:50.860000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
562[2019-10-19 16:05:50.862000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
563[2019-10-19 16:05:50.869000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_1846 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:36:03.869000)
564[2019-10-19 16:05:50.870000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
565[2019-10-19 16:05:50.871000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
566[2019-10-19 16:05:50.882000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
567[2019-10-19 16:05:58.374000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
568[2019-10-19 16:05:58.376000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
569[2019-10-19 16:05:58.378000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
570[2019-10-19 16:05:58.379000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
571[2019-10-19 16:05:58.381000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
572[2019-10-19 16:06:35.229000] [CommandLoader] [INFO] Executing command !ar title:minute+to+win+it with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
573[2019-10-19 16:06:35.231000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
574[2019-10-19 16:06:35.232000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
575[2019-10-19 16:06:35.233000] [turntechGodhead] [DEBUG] Is on cooldown: 0
576[2019-10-19 16:06:35.243000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
577[2019-10-19 16:06:35.243000] [turntechGodhead] [DEBUG] Is on cooldown: 0
578[2019-10-19 16:06:35.244000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
579[2019-10-19 16:06:56.245000] [CommandLoader] [INFO] Executing command !addsong Minute to win it with class <SongRequestCommand object at 0x0000000000000144>...
580[2019-10-19 16:06:56.249000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
581[2019-10-19 16:06:56.251000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
582[2019-10-19 16:06:56.252000] [turntechGodhead] [DEBUG] Is on cooldown: 0
583[2019-10-19 16:06:56.264000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
584[2019-10-19 16:06:56.265000] [turntechGodhead] [DEBUG] Is on cooldown: 0
585[2019-10-19 16:06:56.265000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
586[2019-10-19 16:07:11.416000] [CommandLoader] [INFO] Executing command !ar title:minute+to+win+it with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
587[2019-10-19 16:07:11.419000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
588[2019-10-19 16:07:11.420000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
589[2019-10-19 16:07:11.421000] [turntechGodhead] [DEBUG] Is on cooldown: 4429
590[2019-10-19 16:07:11.422000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
591[2019-10-19 16:07:11.424000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
592[2019-10-19 16:07:11.431000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
593[2019-10-19 16:07:11.432000] [turntechGodhead] [DEBUG] Is on cooldown: 0
594[2019-10-19 16:07:11.433000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
595[2019-10-19 16:07:38.196000] [CommandLoader] [INFO] Executing command !ar title:Greenhouse with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
596[2019-10-19 16:07:38.202000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
597[2019-10-19 16:07:38.204000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
598[2019-10-19 16:07:38.209000] [turntechGodhead] [DEBUG] Is on cooldown: 4402
599[2019-10-19 16:07:38.212000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
600[2019-10-19 16:07:38.213000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
601[2019-10-19 16:07:38.225000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
602[2019-10-19 16:07:38.229000] [turntechGodhead] [DEBUG] Is on cooldown: 0
603[2019-10-19 16:07:38.232000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
604[2019-10-19 16:07:41.696000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x0000000000000143>...
605[2019-10-19 16:07:41.701000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
606[2019-10-19 16:07:41.704000] [turntechGodhead] [DEBUG] Is on cooldown: 0
607[2019-10-19 16:07:41.710000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UC_MMi4Kb-AQwSE0UOJnnTNA to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:37:54.710000)
608[2019-10-19 16:07:41.711000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
609[2019-10-19 16:07:41.711000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_user_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ? AND userid = ?;...
610[2019-10-19 16:07:41.722000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_1214 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:37:54.722000)
611[2019-10-19 16:07:41.723000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
612[2019-10-19 16:07:41.723000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
613[2019-10-19 16:07:41.730000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
614[2019-10-19 16:07:51.003000] [CommandLoader] [INFO] Executing command !ar title:Greenhouse with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
615[2019-10-19 16:07:51.005000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
616[2019-10-19 16:07:51.007000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
617[2019-10-19 16:07:51.008000] [turntechGodhead] [DEBUG] Is on cooldown: 5403
618[2019-10-19 16:07:51.009000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
619[2019-10-19 16:07:51.011000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
620[2019-10-19 16:07:51.019000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
621[2019-10-19 16:07:51.021000] [turntechGodhead] [DEBUG] Is on cooldown: 5403
622[2019-10-19 16:07:51.021000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
623[2019-10-19 16:07:51.022000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
624[2019-10-19 16:07:51.024000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
625[2019-10-19 16:07:51.025000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
626[2019-10-19 16:09:23.399000] [CommandLoader] [INFO] Executing command !ar album:strife title:time+on+my+side with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
627[2019-10-19 16:09:23.400000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
628[2019-10-19 16:09:23.401000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
629[2019-10-19 16:09:23.402000] [turntechGodhead] [DEBUG] Is on cooldown: 0
630[2019-10-19 16:09:23.416000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
631[2019-10-19 16:09:23.419000] [turntechGodhead] [DEBUG] Is on cooldown: 4330
632[2019-10-19 16:09:23.420000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
633[2019-10-19 16:09:23.429000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
634[2019-10-19 16:09:23.430000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
635[2019-10-19 16:09:23.432000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
636[2019-10-19 16:09:54.935000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
637[2019-10-19 16:09:54.937000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
638[2019-10-19 16:09:54.938000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
639[2019-10-19 16:09:54.939000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
640[2019-10-19 16:09:54.940000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
641[2019-10-19 16:09:57.364000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
642[2019-10-19 16:09:57.366000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
643[2019-10-19 16:09:57.367000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
644[2019-10-19 16:09:57.369000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
645[2019-10-19 16:09:57.371000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
646[2019-10-19 16:10:24.150000] [CommandLoader] [INFO] Executing command !addbear with class <AddCanCommand object at 0x0000000000000146>...
647[2019-10-19 16:10:24.151000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
648[2019-10-19 16:10:24.151000] [turntechGodhead] [DEBUG] Is on cooldown: 0
649[2019-10-19 16:10:24.152000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
650[2019-10-19 16:10:24.154000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416371)
651[2019-10-19 16:10:24.155000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
652[2019-10-19 16:10:24.161000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416371)
653[2019-10-19 16:10:24.162000] [Placeholders] [DEBUG] Updating placeholder cancount to 416372
654[2019-10-19 16:10:24.163000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
655[2019-10-19 16:10:24.172000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
656[2019-10-19 16:10:24.172000] [Placeholders] [DEBUG] Replacing $cancount with 416372 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
657[2019-10-19 16:10:24.173000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
658[2019-10-19 16:10:24.174000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:10:59.174000)
659[2019-10-19 16:10:24.174000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
660[2019-10-19 16:10:24.175000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
661[2019-10-19 16:11:53.473000] [CommandLoader] [INFO] Executing command !addbear with class <AddCanCommand object at 0x0000000000000146>...
662[2019-10-19 16:11:53.475000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
663[2019-10-19 16:11:53.478000] [turntechGodhead] [DEBUG] Is on cooldown: 0
664[2019-10-19 16:11:53.478000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
665[2019-10-19 16:11:53.479000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416372)
666[2019-10-19 16:11:53.480000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
667[2019-10-19 16:11:53.480000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416372)
668[2019-10-19 16:11:53.480000] [Placeholders] [DEBUG] Updating placeholder cancount to 416373
669[2019-10-19 16:11:53.481000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
670[2019-10-19 16:11:53.536000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
671[2019-10-19 16:11:53.537000] [Placeholders] [DEBUG] Replacing $cancount with 416373 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
672[2019-10-19 16:11:53.537000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
673[2019-10-19 16:11:53.538000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:12:28.538000)
674[2019-10-19 16:11:53.539000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
675[2019-10-19 16:11:53.539000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
676[2019-10-19 16:12:22.556000] [CommandLoader] [INFO] Executing command !songrequest Trollcops Horizon Cover with class <SongRequestCommand object at 0x0000000000000144>...
677[2019-10-19 16:12:22.557000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
678[2019-10-19 16:12:22.559000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
679[2019-10-19 16:12:22.560000] [turntechGodhead] [DEBUG] Is on cooldown: 0
680[2019-10-19 16:12:22.571000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
681[2019-10-19 16:12:22.572000] [turntechGodhead] [DEBUG] Is on cooldown: 0
682[2019-10-19 16:12:22.574000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
683[2019-10-19 16:12:28.353000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x0000000000000143>...
684[2019-10-19 16:12:28.353000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
685[2019-10-19 16:12:28.354000] [turntechGodhead] [DEBUG] Is on cooldown: 0
686[2019-10-19 16:12:28.356000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UCpZE_jJ1qwZC0hO4_YaEOFw to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:42:41.356000)
687[2019-10-19 16:12:28.357000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
688[2019-10-19 16:12:28.358000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
689[2019-10-19 16:12:28.369000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_1389 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:42:41.368000)
690[2019-10-19 16:12:28.369000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
691[2019-10-19 16:12:28.370000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
692[2019-10-19 16:12:28.371000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
693[2019-10-19 16:15:19.277000] [CommandLoader] [INFO] Executing command !browse this query will never work with class <SearchCommand object at 0x0000000000000147>...
694[2019-10-19 16:15:19.289000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
695[2019-10-19 16:15:44.779000] [CommandLoader] [INFO] Executing command !as now you can search for songs without requesting! with class <AdvancedSearchCommand object at 0x0000000000000148>...
696[2019-10-19 16:15:44.794000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
697[2019-10-19 16:16:30.210000] [CommandLoader] [INFO] Executing command !browse upgrade your corn flake with class <SearchCommand object at 0x0000000000000147>...
698[2019-10-19 16:16:30.215000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
699[2019-10-19 16:16:38.370000] [CommandLoader] [INFO] Executing command !song with class <SongInfoCommand object at 0x0000000000000149>...
700[2019-10-19 16:16:38.377000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
701[2019-10-19 16:17:24.822000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x0000000000000146>...
702[2019-10-19 16:17:24.824000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
703[2019-10-19 16:17:24.827000] [turntechGodhead] [DEBUG] Is on cooldown: 0
704[2019-10-19 16:17:24.828000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
705[2019-10-19 16:17:24.832000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416373)
706[2019-10-19 16:17:24.832000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
707[2019-10-19 16:17:24.833000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416373)
708[2019-10-19 16:17:24.833000] [Placeholders] [DEBUG] Updating placeholder cancount to 416374
709[2019-10-19 16:17:24.834000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
710[2019-10-19 16:17:24.836000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
711[2019-10-19 16:17:24.837000] [Placeholders] [DEBUG] Replacing $cancount with 416374 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
712[2019-10-19 16:17:24.840000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
713[2019-10-19 16:17:24.842000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:17:59.841000)
714[2019-10-19 16:17:24.842000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
715[2019-10-19 16:17:24.844000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
716[2019-10-19 16:17:56.104000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x0000000000000146>...
717[2019-10-19 16:17:56.104000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
718[2019-10-19 16:17:56.106000] [turntechGodhead] [DEBUG] Is on cooldown: 3
719[2019-10-19 16:18:25.025000] [CommandLoader] [INFO] Executing command !song with class <SongInfoCommand object at 0x0000000000000149>...
720[2019-10-19 16:18:25.030000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
721[2019-10-19 16:18:30.826000] [CommandLoader] [INFO] Executing command !as Dawn of Man with class <AdvancedSearchCommand object at 0x0000000000000148>...
722[2019-10-19 16:18:30.832000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
723[2019-10-19 16:18:45.946000] [CommandLoader] [INFO] Executing command !addsong Dawn of Man with class <SongRequestCommand object at 0x0000000000000144>...
724[2019-10-19 16:18:45.949000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
725[2019-10-19 16:18:45.951000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
726[2019-10-19 16:18:45.952000] [turntechGodhead] [DEBUG] Is on cooldown: 0
727[2019-10-19 16:18:45.962000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
728[2019-10-19 16:18:45.964000] [turntechGodhead] [DEBUG] Is on cooldown: 0
729[2019-10-19 16:18:45.965000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
730[2019-10-19 16:19:06.774000] [CommandLoader] [INFO] Executing command !ar Dawn of Man with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
731[2019-10-19 16:19:06.776000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
732[2019-10-19 16:19:06.776000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
733[2019-10-19 16:19:06.777000] [turntechGodhead] [DEBUG] Is on cooldown: 0
734[2019-10-19 16:19:06.781000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
735[2019-10-19 16:19:06.782000] [turntechGodhead] [DEBUG] Is on cooldown: 0
736[2019-10-19 16:19:06.783000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
737[2019-10-19 16:19:07.674000] [CommandLoader] [INFO] Executing command !ar title:dawn+of+man with class <AdvancedSongRequestCommand object at 0x0000000000000142>...
738[2019-10-19 16:19:07.677000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
739[2019-10-19 16:19:07.678000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
740[2019-10-19 16:19:07.679000] [turntechGodhead] [DEBUG] Is on cooldown: 4727
741[2019-10-19 16:19:07.680000] [AegiSQL] [DEBUG] Executing SQL statement SELECT group_name FROM bp_permissions_users_groups WHERE userid = ?;...
742[2019-10-19 16:19:07.681000] [AegiSQL] [DEBUG] Executing SQL statement SELECT permission FROM bp_permissions_users_permissions WHERE userid = ?;...
743[2019-10-19 16:19:07.698000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
744[2019-10-19 16:19:07.699000] [turntechGodhead] [DEBUG] Is on cooldown: 0
745[2019-10-19 16:19:07.700000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
746[2019-10-19 16:19:44.228000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x0000000000000146>...
747[2019-10-19 16:19:44.228000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
748[2019-10-19 16:19:44.230000] [turntechGodhead] [DEBUG] Is on cooldown: 0
749[2019-10-19 16:19:44.230000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
750[2019-10-19 16:19:44.230000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416374)
751[2019-10-19 16:19:44.231000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
752[2019-10-19 16:19:44.233000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416374)
753[2019-10-19 16:19:44.233000] [Placeholders] [DEBUG] Updating placeholder cancount to 416375
754[2019-10-19 16:19:44.234000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
755[2019-10-19 16:19:44.238000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
756[2019-10-19 16:19:44.239000] [Placeholders] [DEBUG] Replacing $cancount with 416375 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
757[2019-10-19 16:19:44.240000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
758[2019-10-19 16:19:44.240000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:20:19.240000)
759[2019-10-19 16:19:44.242000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
760[2019-10-19 16:19:44.243000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
761[2019-10-19 16:22:16.024000] [Byers+] [INFO] Unloading Byers+...
762[2019-10-19 16:22:16.433000] [Permissions] [INFO] Initializing permissions module...
763[2019-10-19 16:22:16.453000] [AegiSQL] [DEBUG] Executing SQL statement
764 CREATE TABLE IF NOT EXISTS bp_permissions_groups_permissions (
765 group_name TEXT,
766 permission TEXT,
767 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name)
768 );
769 ...
770[2019-10-19 16:22:16.454000] [AegiSQL] [DEBUG] Executing SQL statement
771 CREATE TABLE IF NOT EXISTS bp_permissions_groups_inheritances (
772 group_name TEXT,
773 other_group TEXT,
774 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
775 FOREIGN KEY(other_group) REFERENCES bp_permissions_groups(group_name)
776 PRIMARY KEY(group_name, other_group)
777 );
778 ...
779[2019-10-19 16:22:16.455000] [AegiSQL] [DEBUG] Executing SQL statement
780 CREATE TABLE IF NOT EXISTS bp_permissions_users_groups (
781 userid TEXT,
782 group_name TEXT,
783 FOREIGN KEY(group_name) REFERENCES bp_permissions_groups(group_name),
784 PRIMARY KEY(userid, group_name)
785 );
786 ...
787[2019-10-19 16:22:16.456000] [AegiSQL] [DEBUG] Executing SQL statement
788 CREATE TABLE IF NOT EXISTS bp_permissions_users_permissions (
789 userid TEXT,
790 permission TEXT
791 );
792 ...
793[2019-10-19 16:22:16.457000] [AegiSQL] [DEBUG] Executing SQL statement
794 CREATE TABLE IF NOT EXISTS bp_permissions_history (
795 source TEXT,
796 userid TEXT,
797 permission TEXT,
798 action TEXT,
799 date INTEGER
800 );
801 ...
802[2019-10-19 16:22:16.460000] [AegiSQL] [DEBUG] Executing SQL statement
803 CREATE TABLE IF NOT EXISTS bp_placeholders (
804 key TEXT PRIMARY KEY,
805 value TEXT
806 );
807 ...
808[2019-10-19 16:22:16.463000] [AegiSQL] [DEBUG] Executing SQL statement
809 CREATE TABLE IF NOT EXISTS bp_song_history (
810 requestant TEXT,
811 requestant_display TEXT,
812 date_requested TEXT,
813 album_requested TEXT,
814 artist_requested TEXT,
815 title_requested TEXT
816 );
817 ...
818[2019-10-19 16:22:16.466000] [AegiSQL] [DEBUG] Executing SQL statement
819 CREATE TABLE IF NOT EXISTS bp_user_cooldowns (
820 object TEXT,
821 userid TEXT,
822 last_cooldown INTEGER,
823 next_use TEXT,
824 comment TEXT,
825 PRIMARY KEY(object, userid)
826 );
827 ...
828[2019-10-19 16:22:16.466000] [AegiSQL] [DEBUG] Executing SQL statement
829 CREATE TABLE IF NOT EXISTS bp_global_cooldowns (
830 object TEXT,
831 last_cooldown INTEGER,
832 next_use TEXT,
833 comment TEXT,
834 PRIMARY KEY(object)
835 );
836 ...
837[2019-10-19 16:22:16.474000] [CommandLoader] [INFO] Adding command AddCanCommand to command list
838[2019-10-19 16:22:16.478000] [CommandLoader] [INFO] Adding command PermissionBaseCommand to command list
839[2019-10-19 16:22:16.480000] [CommandLoader] [INFO] Adding command AdvancedSearchCommand to command list
840[2019-10-19 16:22:16.481000] [CommandLoader] [INFO] Adding command SearchCommand to command list
841[2019-10-19 16:22:16.485000] [CommandLoader] [INFO] Adding command SongInfoCommand to command list
842[2019-10-19 16:22:16.500000] [CommandLoader] [INFO] Adding command AdvancedSongRequestCommand to command list
843[2019-10-19 16:22:16.501000] [CommandLoader] [INFO] Adding command ConfirmSongRequestCommand to command list
844[2019-10-19 16:22:16.502000] [CommandLoader] [INFO] Adding command SongRequestCommand to command list
845[2019-10-19 16:22:16.503000] [Byers+] [DEBUG] Toggled Byers+ on...
846[2019-10-19 16:22:38.837000] [CommandLoader] [INFO] Executing command !song with class <SongInfoCommand object at 0x00000000000001A7>...
847[2019-10-19 16:22:38.848000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
848[2019-10-19 16:22:42.307000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
849[2019-10-19 16:22:42.309000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
850[2019-10-19 16:22:42.312000] [turntechGodhead] [DEBUG] Is on cooldown: 0
851[2019-10-19 16:22:42.316000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
852[2019-10-19 16:22:42.318000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416375)
853[2019-10-19 16:22:42.320000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
854[2019-10-19 16:22:42.322000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416375)
855[2019-10-19 16:22:42.323000] [Placeholders] [DEBUG] Updating placeholder cancount to 416376
856[2019-10-19 16:22:42.324000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
857[2019-10-19 16:22:42.334000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
858[2019-10-19 16:22:42.335000] [Placeholders] [DEBUG] Replacing $cancount with 416376 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
859[2019-10-19 16:22:42.336000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
860[2019-10-19 16:22:42.342000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:23:17.337000)
861[2019-10-19 16:22:42.343000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
862[2019-10-19 16:22:42.345000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
863[2019-10-19 16:22:55.280000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
864[2019-10-19 16:22:55.283000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
865[2019-10-19 16:22:55.285000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
866[2019-10-19 16:22:55.287000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
867[2019-10-19 16:22:55.288000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
868[2019-10-19 16:23:04.604000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
869[2019-10-19 16:23:04.605000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
870[2019-10-19 16:23:04.607000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
871[2019-10-19 16:23:04.608000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
872[2019-10-19 16:23:04.612000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
873[2019-10-19 16:23:34.882000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
874[2019-10-19 16:23:34.883000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
875[2019-10-19 16:23:34.889000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
876[2019-10-19 16:23:34.890000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
877[2019-10-19 16:23:34.893000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
878[2019-10-19 16:27:07.822000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
879[2019-10-19 16:27:07.822000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
880[2019-10-19 16:27:07.826000] [turntechGodhead] [DEBUG] Is on cooldown: 0
881[2019-10-19 16:27:07.826000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
882[2019-10-19 16:27:07.827000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416376)
883[2019-10-19 16:27:07.827000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
884[2019-10-19 16:27:07.828000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416376)
885[2019-10-19 16:27:07.828000] [Placeholders] [DEBUG] Updating placeholder cancount to 416377
886[2019-10-19 16:27:07.828000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
887[2019-10-19 16:27:07.881000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
888[2019-10-19 16:27:07.881000] [Placeholders] [DEBUG] Replacing $cancount with 416377 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
889[2019-10-19 16:27:07.882000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
890[2019-10-19 16:27:07.883000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:27:42.883000)
891[2019-10-19 16:27:07.883000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
892[2019-10-19 16:27:07.884000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
893[2019-10-19 16:27:10.152000] [CommandLoader] [INFO] Executing command !ar phemiec - fool with class <AdvancedSongRequestCommand object at 0x00000000000001A9>...
894[2019-10-19 16:27:10.155000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
895[2019-10-19 16:27:10.156000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
896[2019-10-19 16:27:10.157000] [turntechGodhead] [DEBUG] Is on cooldown: 0
897[2019-10-19 16:27:10.167000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
898[2019-10-19 16:27:10.168000] [turntechGodhead] [DEBUG] Is on cooldown: 0
899[2019-10-19 16:27:10.169000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
900[2019-10-19 16:27:15.964000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x00000000000001AA>...
901[2019-10-19 16:27:15.985000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
902[2019-10-19 16:27:15.987000] [turntechGodhead] [DEBUG] Is on cooldown: 0
903[2019-10-19 16:27:15.992000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UCILCvBZISvuEKtjE9fRtT1w to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 17:57:28.991000)
904[2019-10-19 16:27:15.992000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
905[2019-10-19 16:27:15.993000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
906[2019-10-19 16:27:16.003000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_2323 to 2 hours, 15 minutes, 19 seconds (next use at 2019-10-19 18:42:35.003000)
907[2019-10-19 16:27:16.004000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
908[2019-10-19 16:27:16.004000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
909[2019-10-19 16:27:16.006000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
910[2019-10-19 16:27:39.121000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
911[2019-10-19 16:27:39.122000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
912[2019-10-19 16:27:39.124000] [turntechGodhead] [DEBUG] Is on cooldown: 3
913[2019-10-19 16:28:38.275000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
914[2019-10-19 16:28:38.276000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
915[2019-10-19 16:28:38.277000] [turntechGodhead] [DEBUG] Is on cooldown: 0
916[2019-10-19 16:28:38.277000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
917[2019-10-19 16:28:38.278000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416377)
918[2019-10-19 16:28:38.278000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
919[2019-10-19 16:28:38.279000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416377)
920[2019-10-19 16:28:38.279000] [Placeholders] [DEBUG] Updating placeholder cancount to 416378
921[2019-10-19 16:28:38.279000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
922[2019-10-19 16:28:38.289000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
923[2019-10-19 16:28:38.293000] [Placeholders] [DEBUG] Replacing $cancount with 416378 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
924[2019-10-19 16:28:38.295000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
925[2019-10-19 16:28:38.303000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:29:13.301000)
926[2019-10-19 16:28:38.306000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
927[2019-10-19 16:28:38.306000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
928[2019-10-19 16:28:40.577000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
929[2019-10-19 16:28:40.579000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
930[2019-10-19 16:28:40.579000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
931[2019-10-19 16:28:40.580000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
932[2019-10-19 16:28:40.582000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
933[2019-10-19 16:29:19.014000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
934[2019-10-19 16:29:19.014000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
935[2019-10-19 16:29:19.015000] [turntechGodhead] [DEBUG] Is on cooldown: 0
936[2019-10-19 16:29:19.017000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
937[2019-10-19 16:29:19.018000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416378)
938[2019-10-19 16:29:19.019000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
939[2019-10-19 16:29:19.019000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416378)
940[2019-10-19 16:29:19.020000] [Placeholders] [DEBUG] Updating placeholder cancount to 416379
941[2019-10-19 16:29:19.020000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
942[2019-10-19 16:29:19.030000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
943[2019-10-19 16:29:19.032000] [Placeholders] [DEBUG] Replacing $cancount with 416379 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
944[2019-10-19 16:29:19.032000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
945[2019-10-19 16:29:19.033000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:29:54.033000)
946[2019-10-19 16:29:19.033000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
947[2019-10-19 16:29:19.034000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
948[2019-10-19 16:30:32.247000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
949[2019-10-19 16:30:32.247000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
950[2019-10-19 16:30:32.248000] [turntechGodhead] [DEBUG] Is on cooldown: 0
951[2019-10-19 16:30:32.249000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
952[2019-10-19 16:30:32.249000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416379)
953[2019-10-19 16:30:32.250000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
954[2019-10-19 16:30:32.250000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416379)
955[2019-10-19 16:30:32.251000] [Placeholders] [DEBUG] Updating placeholder cancount to 416380
956[2019-10-19 16:30:32.251000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
957[2019-10-19 16:30:32.253000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
958[2019-10-19 16:30:32.253000] [Placeholders] [DEBUG] Replacing $cancount with 416380 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
959[2019-10-19 16:30:32.254000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
960[2019-10-19 16:30:32.255000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:31:07.254000)
961[2019-10-19 16:30:32.255000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
962[2019-10-19 16:30:32.256000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
963[2019-10-19 16:31:12.617000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
964[2019-10-19 16:31:12.618000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
965[2019-10-19 16:31:12.620000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
966[2019-10-19 16:31:12.621000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
967[2019-10-19 16:31:12.622000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
968[2019-10-19 16:31:59.480000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
969[2019-10-19 16:31:59.518000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
970[2019-10-19 16:31:59.519000] [turntechGodhead] [DEBUG] Is on cooldown: 0
971[2019-10-19 16:31:59.520000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
972[2019-10-19 16:31:59.520000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416380)
973[2019-10-19 16:31:59.521000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
974[2019-10-19 16:31:59.522000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416380)
975[2019-10-19 16:31:59.523000] [Placeholders] [DEBUG] Updating placeholder cancount to 416381
976[2019-10-19 16:31:59.523000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
977[2019-10-19 16:31:59.525000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
978[2019-10-19 16:31:59.528000] [Placeholders] [DEBUG] Replacing $cancount with 416381 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
979[2019-10-19 16:31:59.529000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
980[2019-10-19 16:31:59.529000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:32:34.529000)
981[2019-10-19 16:31:59.530000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
982[2019-10-19 16:31:59.530000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
983[2019-10-19 16:33:10.453000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
984[2019-10-19 16:33:10.453000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
985[2019-10-19 16:33:10.454000] [turntechGodhead] [DEBUG] Is on cooldown: 0
986[2019-10-19 16:33:10.455000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
987[2019-10-19 16:33:10.455000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416381)
988[2019-10-19 16:33:10.456000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
989[2019-10-19 16:33:10.459000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416381)
990[2019-10-19 16:33:10.461000] [Placeholders] [DEBUG] Updating placeholder cancount to 416382
991[2019-10-19 16:33:10.462000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
992[2019-10-19 16:33:10.466000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
993[2019-10-19 16:33:10.468000] [Placeholders] [DEBUG] Replacing $cancount with 416382 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
994[2019-10-19 16:33:10.469000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
995[2019-10-19 16:33:10.470000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:33:45.469000)
996[2019-10-19 16:33:10.470000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
997[2019-10-19 16:33:10.472000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
998[2019-10-19 16:33:34.023000] [CommandLoader] [INFO] Executing command !browse Qualia - The Race with class <SearchCommand object at 0x00000000000001AB>...
999[2019-10-19 16:33:34.034000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1000[2019-10-19 16:33:37.508000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
1001[2019-10-19 16:33:37.510000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1002[2019-10-19 16:33:37.513000] [turntechGodhead] [DEBUG] Is on cooldown: 7
1003[2019-10-19 16:33:49.150000] [CommandLoader] [INFO] Executing command !as Anna's Theme with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1004[2019-10-19 16:33:49.155000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1005[2019-10-19 16:34:55.619000] [CommandLoader] [INFO] Executing command !as Janestuck with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1006[2019-10-19 16:34:55.622000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1007[2019-10-19 16:35:04.969000] [CommandLoader] [INFO] Executing command !as Nurse with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1008[2019-10-19 16:35:04.975000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1009[2019-10-19 16:35:35.104000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
1010[2019-10-19 16:35:35.105000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1011[2019-10-19 16:35:35.105000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1012[2019-10-19 16:35:35.106000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
1013[2019-10-19 16:35:35.106000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416382)
1014[2019-10-19 16:35:35.107000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
1015[2019-10-19 16:35:35.107000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416382)
1016[2019-10-19 16:35:35.108000] [Placeholders] [DEBUG] Updating placeholder cancount to 416383
1017[2019-10-19 16:35:35.108000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
1018[2019-10-19 16:35:35.118000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1019[2019-10-19 16:35:35.119000] [Placeholders] [DEBUG] Replacing $cancount with 416383 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
1020[2019-10-19 16:35:35.119000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1021[2019-10-19 16:35:35.120000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:36:10.120000)
1022[2019-10-19 16:35:35.120000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
1023[2019-10-19 16:35:35.121000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
1024[2019-10-19 16:35:37.428000] [CommandLoader] [INFO] Executing command !as Vaguettes with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1025[2019-10-19 16:35:37.433000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1026[2019-10-19 16:35:47.834000] [CommandLoader] [INFO] Executing command !songrequest Miss You with class <SongRequestCommand object at 0x00000000000001AD>...
1027[2019-10-19 16:35:47.837000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
1028[2019-10-19 16:35:47.838000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1029[2019-10-19 16:35:47.838000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1030[2019-10-19 16:35:47.846000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1031[2019-10-19 16:35:47.847000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1032[2019-10-19 16:35:47.852000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1033[2019-10-19 16:36:11.102000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1034[2019-10-19 16:36:11.529000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1035[2019-10-19 16:36:11.530000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1036[2019-10-19 16:36:11.532000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1037[2019-10-19 16:36:11.533000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1038[2019-10-19 16:36:14.746000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
1039[2019-10-19 16:36:14.747000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1040[2019-10-19 16:36:14.748000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1041[2019-10-19 16:36:14.748000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
1042[2019-10-19 16:36:14.749000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416383)
1043[2019-10-19 16:36:14.749000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
1044[2019-10-19 16:36:14.749000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416383)
1045[2019-10-19 16:36:14.749000] [Placeholders] [DEBUG] Updating placeholder cancount to 416384
1046[2019-10-19 16:36:14.750000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
1047[2019-10-19 16:36:14.760000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1048[2019-10-19 16:36:14.761000] [Placeholders] [DEBUG] Replacing $cancount with 416384 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
1049[2019-10-19 16:36:14.761000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1050[2019-10-19 16:36:14.762000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:36:49.762000)
1051[2019-10-19 16:36:14.763000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
1052[2019-10-19 16:36:14.763000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...
1053[2019-10-19 16:36:24.079000] [CommandLoader] [INFO] Executing command !as album:greatest title:miss+you with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1054[2019-10-19 16:36:24.084000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1055[2019-10-19 16:37:29.054000] [CommandLoader] [INFO] Executing command !as vaguelettes with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1056[2019-10-19 16:37:29.059000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1057[2019-10-19 16:37:41.874000] [CommandLoader] [INFO] Executing command !ar Miss You with class <AdvancedSongRequestCommand object at 0x00000000000001A9>...
1058[2019-10-19 16:37:41.876000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
1059[2019-10-19 16:37:41.876000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1060[2019-10-19 16:37:41.877000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1061[2019-10-19 16:37:41.885000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1062[2019-10-19 16:37:41.890000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1063[2019-10-19 16:37:41.891000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1064[2019-10-19 16:37:47.700000] [CommandLoader] [INFO] Executing command !yes with class <ConfirmSongRequestCommand object at 0x00000000000001AA>...
1065[2019-10-19 16:37:47.700000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1066[2019-10-19 16:37:47.701000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1067[2019-10-19 16:37:47.703000] [turntechGodhead] [INFO] Setting cooldown of !songrequest for user UC5f4V2cw7m_NCKrgYO-CMJA to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 18:08:00.703000)
1068[2019-10-19 16:37:47.704000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_user_cooldowns WHERE object = ? AND userid = ?;...
1069[2019-10-19 16:37:47.704000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_user_cooldowns VALUES (?, ?, ?, ?, ?);...
1070[2019-10-19 16:37:47.713000] [turntechGodhead] [INFO] Setting cooldown of !!SONG_p1_0681 to 1 hours, 30 minutes, 13 seconds (next use at 2019-10-19 18:08:00.713000)
1071[2019-10-19 16:37:47.713000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
1072[2019-10-19 16:37:47.714000] [AegiSQL] [DEBUG] Executing SQL statement INSERT INTO bp_global_cooldowns VALUES (?, ?, ?, ?);...
1073[2019-10-19 16:37:47.715000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1074[2019-10-19 16:38:35.288000] [CommandLoader] [INFO] Executing command !as shit jazz.wav with class <AdvancedSearchCommand object at 0x00000000000001AC>...
1075[2019-10-19 16:38:35.298000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1076[2019-10-19 16:39:27.602000] [CommandLoader] [INFO] Executing command !addcan with class <AddCanCommand object at 0x00000000000001A8>...
1077[2019-10-19 16:39:27.603000] [AegiSQL] [DEBUG] Executing SQL statement SELECT next_use FROM bp_global_cooldowns WHERE object = ?;...
1078[2019-10-19 16:39:27.603000] [turntechGodhead] [DEBUG] Is on cooldown: 0
1079[2019-10-19 16:39:27.604000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
1080[2019-10-19 16:39:27.605000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416384)
1081[2019-10-19 16:39:27.605000] [AegiSQL] [DEBUG] Executing SQL statement SELECT value FROM bp_placeholders WHERE key=?...
1082[2019-10-19 16:39:27.605000] [Placeholders] [DEBUG] Requested placeholder cancount (value: 416384)
1083[2019-10-19 16:39:27.606000] [Placeholders] [DEBUG] Updating placeholder cancount to 416385
1084[2019-10-19 16:39:27.607000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_placeholders SET value=? WHERE key=?...
1085[2019-10-19 16:39:27.617000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1086[2019-10-19 16:39:27.618000] [Placeholders] [DEBUG] Replacing $cancount with 416385 in string You place a can in Can City. There's now $cancount cans. Someone can add another in 35 seconds.
1087[2019-10-19 16:39:27.619000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_placeholders...
1088[2019-10-19 16:39:27.620000] [turntechGodhead] [INFO] Setting cooldown of !addcan to 35 seconds (next use at 2019-10-19 16:40:02.620000)
1089[2019-10-19 16:39:27.620000] [AegiSQL] [DEBUG] Executing SQL statement SELECT * FROM bp_global_cooldowns WHERE object = ?;...
1090[2019-10-19 16:39:27.622000] [AegiSQL] [DEBUG] Executing SQL statement UPDATE bp_global_cooldowns SET last_cooldown = ?, next_use = ?, comment = ? WHERE object = ?;...