We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02b0e4 commit b97d112Copy full SHA for b97d112
lambda-runtime-core/src/runtime.rs
@@ -214,7 +214,7 @@ where
214
}
215
216
Err(e) => {
217
- debug!("Handler returned an error for {}: {}", request_id, e);
+ error!("Handler returned an error for {}: {}", request_id, e);
218
debug!("Attempting to send error response to Runtime API for {}", request_id);
219
match self.runtime_client.event_error(&request_id, &ErrorResponse::from(e)) {
220
Ok(_) => info!("Error response for {} accepted by Runtime API", request_id),
0 commit comments