mirror of https://github.com/fafhrd91/actix-net
update changelog
This commit is contained in:
parent
3879ea0f04
commit
3f57fc8415
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
## 2.1.0 - 2022-03-08
|
## 2.1.0 - 2022-03-08
|
||||||
- Update `tokio-uring` dependency to `0.3.0`. [#448]
|
- Update `tokio-uring` dependency to `0.3.0`. [#448]
|
||||||
|
- Logs emitted now use the `tracing` crate with `log` compatibility. [#448]
|
||||||
- Wait for accept thread to stop before sending completion signal. [#443]
|
- Wait for accept thread to stop before sending completion signal. [#443]
|
||||||
|
|
||||||
[#443]: https://github.com/actix/actix-net/pull/443
|
[#443]: https://github.com/actix/actix-net/pull/443
|
||||||
|
|
|
@ -41,7 +41,7 @@ async fn run() -> io::Result<()> {
|
||||||
Some(Ok(line)) => {
|
Some(Ok(line)) => {
|
||||||
match File::open(&line).await {
|
match File::open(&line).await {
|
||||||
Ok(mut file) => {
|
Ok(mut file) => {
|
||||||
tracing::info!("reading file: {line}");
|
tracing::info!("reading file: {}", &line);
|
||||||
|
|
||||||
// read file into String buffer
|
// read file into String buffer
|
||||||
let mut buf = String::new();
|
let mut buf = String::new();
|
||||||
|
|
Loading…
Reference in New Issue