-
Notifications
You must be signed in to change notification settings - Fork 1.1k
fix: swarm/src/lib.rs:tracing::debug!(%local_peer_id) #6123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## 0.47.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add pr to swarm/CHANGELOG.md patch version |
||
|
||
- Fix `src/lib.rs:tracing::debug!(%local_peer_id)`. | ||
See [PR 6123](https://github.com/libp2p/rust-libp2p/pull/6123) | ||
|
||
## 0.47.0 | ||
|
||
- Remove `async-std` support. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name = "libp2p-swarm" | |
edition.workspace = true | ||
rust-version = { workspace = true } | ||
description = "The libp2p swarm" | ||
version = "0.47.0" | ||
version = "0.47.1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. patch version |
||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT" | ||
repository = "https://github.com/libp2p/rust-libp2p" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -353,7 +353,7 @@ where | |
local_peer_id: PeerId, | ||
config: Config, | ||
) -> Self { | ||
tracing::info!(%local_peer_id); | ||
tracing::debug!(%local_peer_id); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. actual change |
||
|
||
Swarm { | ||
local_peer_id, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bump libp2p-swarm patch version