@@ -136,7 +136,8 @@ public void performPOST(@Nonnull JSONObject json, int sites) throws IOException{
136
136
if (responseBody == null ){
137
137
LOG .error ("Received empty Response from BotBlock API!" );
138
138
LOG .error (
139
- "Response{protocol={}, code={}, message={}, headers={}}" ,
139
+ "Response{timestamp={}, protocol={}, code={}, message={}, headers={}}" ,
140
+ System .currentTimeMillis (),
140
141
response .protocol (),
141
142
response .code (),
142
143
response .message (),
@@ -149,7 +150,8 @@ public void performPOST(@Nonnull JSONObject json, int sites) throws IOException{
149
150
if (bodyString .isEmpty ()){
150
151
LOG .error ("Received empty Response from BotBlock API!" );
151
152
LOG .error (
152
- "Response{protocol={}, code={}, message={}, headers={}}" ,
153
+ "Response{timestamp={}, protocol={}, code={}, message={}, headers={}}" ,
154
+ System .currentTimeMillis (),
153
155
response .protocol (),
154
156
response .code (),
155
157
response .message (),
@@ -206,7 +208,8 @@ private JSONObject performGET(@Nonnull String url, String header) throws IOExcep
206
208
if (body == null ){
207
209
LOG .error ("Received empty Response from BotBlock API!" );
208
210
LOG .error (
209
- "Response{protocol={}, code={}, message={}, headers={}}" ,
211
+ "Response{timestamp={}, protocol={}, code={}, message={}, headers={}}" ,
212
+ System .currentTimeMillis (),
210
213
response .protocol (),
211
214
response .code (),
212
215
response .message (),
@@ -219,7 +222,8 @@ private JSONObject performGET(@Nonnull String url, String header) throws IOExcep
219
222
if (bodyString .isEmpty ()){
220
223
LOG .error ("Received empty Response from BotBlock API!" );
221
224
LOG .error (
222
- "Response{protocol={}, code={}, message={}, headers={}}" ,
225
+ "Response{timestamp={}, protocol={}, code={}, message={}, headers={}}" ,
226
+ System .currentTimeMillis (),
223
227
response .protocol (),
224
228
response .code (),
225
229
response .message (),
0 commit comments