Skip to content

Commit 7609f9d

Browse files
committed
joinstr: fix some logs level
1 parent e3d4c6c commit 7609f9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust/joinstr/src/joinstr/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ impl Joinstr<'_> {
462462
if let Some(PoolMessage::Credentials(Credentials { id, key })) =
463463
inner.client.try_receive_pool_msg()?
464464
{
465-
log::warn!(
465+
log::debug!(
466466
"Coordinator({}).connect_to_pool(): receive credentials.",
467467
inner.client.name
468468
);

rust/joinstr/src/nostr/sync/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ impl NostrClient {
167167
/// - sending the DM fails
168168
pub fn send_pool_message(&mut self, npub: &PublicKey, msg: PoolMessage) -> Result<(), Error> {
169169
let clear_content = msg.to_string()?;
170-
log::info!("NostrClient.send_pool_message(): {:#?}", clear_content);
170+
log::debug!("NostrClient.send_pool_message(): {:#?}", clear_content);
171171
self.send_dm(npub, clear_content)
172172
}
173173

0 commit comments

Comments
 (0)