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 93c3fa2 commit 88ea9c0Copy full SHA for 88ea9c0
apps/pyth-lazer-agent/src/jrpc_handle.rs
@@ -14,7 +14,7 @@ use soketto::handshake::http::Server;
14
use std::str::FromStr;
15
use tokio::{pin, select};
16
use tokio_util::compat::TokioAsyncReadCompatExt;
17
-use tracing::{debug, instrument};
+use tracing::{debug, error, instrument};
18
use url::Url;
19
20
const DEFAULT_HISTORY_SERVICE_URL: &str =
@@ -156,7 +156,7 @@ async fn handle_jrpc_inner<T: AsyncRead + AsyncWrite + Unpin>(
156
.await?;
157
}
158
Err(err) => {
159
- debug!("error while retrieving metadata: {:?}", err);
+ error!("error while retrieving metadata: {:?}", err);
160
send_text(
161
sender,
162
serde_json::to_string::<JrpcResponse<()>>(&JrpcResponse::Error(
0 commit comments