@@ -122,7 +122,12 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
122
122
if ( timer == null ) { return ; }
123
123
timer = null ;
124
124
125
- reject ( logger . makeError ( "timeout" , Logger . errors . TIMEOUT , { timeout : timeout } ) ) ;
125
+ reject ( logger . makeError ( "timeout" , Logger . errors . TIMEOUT , {
126
+ requestBody : ( options . body || null ) ,
127
+ requestMethod : options . method ,
128
+ timeout : timeout ,
129
+ url : url
130
+ } ) ) ;
126
131
} , timeout ) ;
127
132
}
128
133
} ) ;
@@ -146,6 +151,8 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
146
151
if ( response == null ) {
147
152
runningTimeout . cancel ( ) ;
148
153
logger . throwError ( "missing response" , Logger . errors . SERVER_ERROR , {
154
+ requestBody : ( options . body || null ) ,
155
+ requestMethod : options . method ,
149
156
serverError : error ,
150
157
url : url
151
158
} ) ;
@@ -164,6 +171,8 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
164
171
status : response . statusCode ,
165
172
headers : response . headers ,
166
173
body : body ,
174
+ requestBody : ( options . body || null ) ,
175
+ requestMethod : options . method ,
167
176
url : url
168
177
} ) ;
169
178
}
@@ -178,6 +187,8 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
178
187
logger . throwError ( "invalid JSON" , Logger . errors . SERVER_ERROR , {
179
188
body : body ,
180
189
error : error ,
190
+ requestBody : ( options . body || null ) ,
191
+ requestMethod : options . method ,
181
192
url : url
182
193
} ) ;
183
194
}
@@ -189,7 +200,10 @@ export function fetchJson(connection: string | ConnectionInfo, json?: string, pr
189
200
} catch ( error ) {
190
201
logger . throwError ( "processing response error" , Logger . errors . SERVER_ERROR , {
191
202
body : json ,
192
- error : error
203
+ error : error ,
204
+ requestBody : ( options . body || null ) ,
205
+ requestMethod : options . method ,
206
+ url : url
193
207
} ) ;
194
208
}
195
209
}
0 commit comments