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 023763e commit 59587b2Copy full SHA for 59587b2
src/spring_last_err.rs
@@ -8,7 +8,7 @@ use std::{
8
os::raw::{c_char, c_int},
9
};
10
11
-use log::{error, warn};
+use log::{info, warn};
12
use springql_core::error::SpringError;
13
14
use crate::{cstr::strcpy, spring_errno::SpringErrno};
@@ -55,7 +55,7 @@ impl Display for LastError {
55
56
/// Update the most recent error, clearing whatever may have been there before.
57
pub(super) fn update_last_error(err: LastError) {
58
- error!("Setting LAST_ERROR: {}", err);
+ info!("Setting LAST_ERROR: {}", err);
59
60
{
61
// Print a pseudo-backtrace for this error, following back each error's
0 commit comments