From 15d51843954ca3855801f6748c02501f30f525d2 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Wed, 14 Dec 2022 12:45:37 -0500 Subject: [PATCH] v1.0.0-beta.12: Reduce logging from worker --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 8 ++++---- falconeri-worker/Cargo.toml | 2 +- falconeri/Cargo.toml | 2 +- falconeri_common/Cargo.toml | 2 +- falconerid/Cargo.toml | 2 +- 6 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3168f36..7ed20fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0-beta.12] - 2022-12-14 + +### Fixed + +- Log much less from `falconeri_worker` by default, and make it configurable. This fixes an issue where the newer tracing code was causing the worker to log far too much. + +## [1.0.0-beta.11] - 2022-12-14 [YANKED] + +### Fixed + +- This version hard-coded a very low logging level. It was yanked because the low logging level would have made it impossible to debug falconeri issues discovered in the field, and because it was never fully released. + ## [1.0.0-beta.10] - 2022-12-02 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 00ca234..015ef8c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -587,7 +587,7 @@ dependencies = [ [[package]] name = "falconeri" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" dependencies = [ "base64", "crossbeam", @@ -606,7 +606,7 @@ dependencies = [ [[package]] name = "falconeri-worker" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" dependencies = [ "crossbeam", "env_logger", @@ -620,7 +620,7 @@ dependencies = [ [[package]] name = "falconeri_common" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" dependencies = [ "anyhow", "backoff", @@ -647,7 +647,7 @@ dependencies = [ [[package]] name = "falconerid" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" dependencies = [ "falconeri_common", "headers", diff --git a/falconeri-worker/Cargo.toml b/falconeri-worker/Cargo.toml index ea2ff97..a51a6d3 100644 --- a/falconeri-worker/Cargo.toml +++ b/falconeri-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri-worker" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconeri/Cargo.toml b/falconeri/Cargo.toml index 31e8b2f..98446ec 100644 --- a/falconeri/Cargo.toml +++ b/falconeri/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Eric Kidd "] name = "falconeri" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/falconeri_common/Cargo.toml b/falconeri_common/Cargo.toml index 863cf30..da70f45 100644 --- a/falconeri_common/Cargo.toml +++ b/falconeri_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri_common" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconerid/Cargo.toml b/falconerid/Cargo.toml index f71b152..cf67cc5 100644 --- a/falconerid/Cargo.toml +++ b/falconerid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconerid" -version = "1.0.0-beta.10" +version = "1.0.0-beta.12" authors = ["Eric Kidd "] edition = "2018"