From 4b0c11e1d27e9c3e15b2c39c8e508037048e3a36 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Wed, 12 Feb 2020 11:54:29 -0800 Subject: [PATCH 1/6] Add tracing to logging libraries section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a2c35c5..75c1f3f 100644 --- a/README.md +++ b/README.md @@ -1188,6 +1188,7 @@ See also [Are we game yet?](https://arewegameyet.com) * [rust-lang/log](https://github.com/rust-lang/log) — Logging implementation for Rust [![Build Status](https://api.travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log) * [slog-rs/slog](https://github.com/slog-rs/slog) — Structured, composable logging for Rust [![Build Status](https://api.travis-ci.org/slog-rs/slog.svg?branch=master)](https://travis-ci.org/slog-rs/slog) * [estk/log4rs](https://github.com/estk/log4rs) — highly configurable logging framework modeled after Java's Logback and log4j libraries [![CircleCI](https://circleci.com/gh/estk/log4rs.svg?style=shield)](https://circleci.com/gh/estk/log4rs) +* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for Rust for logging, error handling, metrics, and more [![Build Status][https://github.com/tokio-rs/tracing/workflows/CI/badge.svg]][https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI] ### Macro From 1a9a142b9d599165d943ec04f8b022824f2a4db6 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Wed, 12 Feb 2020 11:59:43 -0800 Subject: [PATCH 2/6] fix brackets --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75c1f3f..2762ec3 100644 --- a/README.md +++ b/README.md @@ -1188,7 +1188,7 @@ See also [Are we game yet?](https://arewegameyet.com) * [rust-lang/log](https://github.com/rust-lang/log) — Logging implementation for Rust [![Build Status](https://api.travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log) * [slog-rs/slog](https://github.com/slog-rs/slog) — Structured, composable logging for Rust [![Build Status](https://api.travis-ci.org/slog-rs/slog.svg?branch=master)](https://travis-ci.org/slog-rs/slog) * [estk/log4rs](https://github.com/estk/log4rs) — highly configurable logging framework modeled after Java's Logback and log4j libraries [![CircleCI](https://circleci.com/gh/estk/log4rs.svg?style=shield)](https://circleci.com/gh/estk/log4rs) -* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for Rust for logging, error handling, metrics, and more [![Build Status][https://github.com/tokio-rs/tracing/workflows/CI/badge.svg]][https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI] +* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for Rust for logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) ### Macro From c59472d908f9947fea54a31ccd4a8694bf4e52f8 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Wed, 12 Feb 2020 12:00:34 -0800 Subject: [PATCH 3/6] remove redundant info --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2762ec3..0518645 100644 --- a/README.md +++ b/README.md @@ -1188,7 +1188,7 @@ See also [Are we game yet?](https://arewegameyet.com) * [rust-lang/log](https://github.com/rust-lang/log) — Logging implementation for Rust [![Build Status](https://api.travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log) * [slog-rs/slog](https://github.com/slog-rs/slog) — Structured, composable logging for Rust [![Build Status](https://api.travis-ci.org/slog-rs/slog.svg?branch=master)](https://travis-ci.org/slog-rs/slog) * [estk/log4rs](https://github.com/estk/log4rs) — highly configurable logging framework modeled after Java's Logback and log4j libraries [![CircleCI](https://circleci.com/gh/estk/log4rs.svg?style=shield)](https://circleci.com/gh/estk/log4rs) -* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for Rust for logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) +* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) ### Macro From 69fa03ea3df17633f2df6f1d22a1cab344327207 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Wed, 12 Feb 2020 13:15:49 -0800 Subject: [PATCH 4/6] mention async aspect of design --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0518645..75dd231 100644 --- a/README.md +++ b/README.md @@ -1188,7 +1188,7 @@ See also [Are we game yet?](https://arewegameyet.com) * [rust-lang/log](https://github.com/rust-lang/log) — Logging implementation for Rust [![Build Status](https://api.travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log) * [slog-rs/slog](https://github.com/slog-rs/slog) — Structured, composable logging for Rust [![Build Status](https://api.travis-ci.org/slog-rs/slog.svg?branch=master)](https://travis-ci.org/slog-rs/slog) * [estk/log4rs](https://github.com/estk/log4rs) — highly configurable logging framework modeled after Java's Logback and log4j libraries [![CircleCI](https://circleci.com/gh/estk/log4rs.svg?style=shield)](https://circleci.com/gh/estk/log4rs) -* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) +* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for async-aware logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) ### Macro From af17b4190df8371a4cc97d2bd297ef0309820056 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Wed, 12 Feb 2020 13:16:42 -0800 Subject: [PATCH 5/6] mention structured aspect --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 75dd231..9d68a80 100644 --- a/README.md +++ b/README.md @@ -1188,7 +1188,7 @@ See also [Are we game yet?](https://arewegameyet.com) * [rust-lang/log](https://github.com/rust-lang/log) — Logging implementation for Rust [![Build Status](https://api.travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log) * [slog-rs/slog](https://github.com/slog-rs/slog) — Structured, composable logging for Rust [![Build Status](https://api.travis-ci.org/slog-rs/slog.svg?branch=master)](https://travis-ci.org/slog-rs/slog) * [estk/log4rs](https://github.com/estk/log4rs) — highly configurable logging framework modeled after Java's Logback and log4j libraries [![CircleCI](https://circleci.com/gh/estk/log4rs.svg?style=shield)](https://circleci.com/gh/estk/log4rs) -* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for async-aware logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) +* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for async-aware structured logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) ### Macro From e51bcfd939ad4e9a9fd4f3c31af92cdc617a2e41 Mon Sep 17 00:00:00 2001 From: Jane Lusby Date: Wed, 12 Feb 2020 15:18:52 -0800 Subject: [PATCH 6/6] tie to master branch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d68a80..fe4663a 100644 --- a/README.md +++ b/README.md @@ -1188,7 +1188,7 @@ See also [Are we game yet?](https://arewegameyet.com) * [rust-lang/log](https://github.com/rust-lang/log) — Logging implementation for Rust [![Build Status](https://api.travis-ci.org/rust-lang/log.svg?branch=master)](https://travis-ci.org/rust-lang/log) * [slog-rs/slog](https://github.com/slog-rs/slog) — Structured, composable logging for Rust [![Build Status](https://api.travis-ci.org/slog-rs/slog.svg?branch=master)](https://travis-ci.org/slog-rs/slog) * [estk/log4rs](https://github.com/estk/log4rs) — highly configurable logging framework modeled after Java's Logback and log4j libraries [![CircleCI](https://circleci.com/gh/estk/log4rs.svg?style=shield)](https://circleci.com/gh/estk/log4rs) -* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for async-aware structured logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) +* [tokio-rs/tracing](https://github.com/tokio-rs/tracing) — An application level tracing framework for async-aware structured logging, error handling, metrics, and more [![Build Status](https://github.com/tokio-rs/tracing/workflows/CI/badge.svg?branch=master)](https://github.com/tokio-rs/tracing/actions?query=workflow%3ACI) ### Macro