We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2abf5bf commit 2a8688eCopy full SHA for 2a8688e
linera-sdk/src/log.rs
@@ -2,7 +2,7 @@
2
// SPDX-License-Identifier: Apache-2.0
3
4
use std::{
5
- panic::{self, PanicInfo},
+ panic::{self, PanicHookInfo},
6
sync::Once,
7
};
8
@@ -70,6 +70,6 @@ impl Log for ServiceLogger {
70
}
71
72
/// Logs a panic using the [`log`] API.
73
-fn log_panic(info: &PanicInfo<'_>) {
+fn log_panic(info: &PanicHookInfo<'_>) {
74
log::error!("{info}");
75
linera-views/src/views/map_view.rs
@@ -1988,6 +1988,7 @@ mod graphql {
1988
1989
1990
1991
+/// The tests for `Borrow` and `bcs`.
1992
#[cfg(test)]
1993
pub mod tests {
1994
use std::borrow::Borrow;
0 commit comments