···5959 const data = TCPResponse.safeParse(json);
60606161 if (!data.success) {
6262+ console.error(res);
6363+ console.error(JSON.stringify(json));
6264 console.error(
6363- `something went wrong with result ${json} request to ${url} error ${data.error.message}`,
6565+ `something went wrong with request to ${url} error ${data.error.message}`,
6466 );
6567 throw new Error(data.error.message);
6668 }
···175175 const data = checkerSchema.safeParse(json);
176176177177 if (!data.success) {
178178- console.log(json);
178178+ console.error(res);
179179+ console.error(JSON.stringify(json));
179180 console.error(
180180- `something went wrong with result ${json} request to ${url} error ${data.error.message}`,
181181+ `something went wrong with request to ${url} error ${data.error.message}`,
181182 );
182183 throw new Error(data.error.message);
183184 }