From 7f8431cadb8b4d1ca6f36a9506e2c4d7c332835d Mon Sep 17 00:00:00 2001 From: Carter Green Date: Sun, 3 Oct 2021 11:35:15 -0500 Subject: [PATCH] Remove chatty log --- Cargo.lock | 2 +- Cargo.toml | 2 +- web/components/model_inputs/ProducerInput.tsx | 2 -- web/front_end/about/Changelog.tsx | 3 +++ 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index be361a95..9a679bdf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3133,7 +3133,7 @@ checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" [[package]] name = "vinoteca" -version = "6.2.5" +version = "6.2.6" dependencies = [ "bcrypt", "chrono", diff --git a/Cargo.toml b/Cargo.toml index fa93087b..588146b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "vinoteca" description = "Wine purchase tracker" repository = "https://github.com/threecgreen/vinoteca" -version = "6.2.5" +version = "6.2.6" edition = "2018" authors = ["Carter Green "] readme = "./README.md" diff --git a/web/components/model_inputs/ProducerInput.tsx b/web/components/model_inputs/ProducerInput.tsx index 24d4aca8..6137f3d6 100644 --- a/web/components/model_inputs/ProducerInput.tsx +++ b/web/components/model_inputs/ProducerInput.tsx @@ -17,7 +17,6 @@ export const ProducerInput: React.FC = ({value, required, ...props}) => const inputRef = React.useRef() as React.MutableRefObject; const onChangeRef = React.useRef((_: string) => { return; }); React.useEffect(() => { - // logger.logWarning(`onChange effect`); onChangeRef.current = props.onChange; }, [props.onChange]); @@ -41,7 +40,6 @@ export const ProducerInput: React.FC = ({value, required, ...props}) => inputRef={ inputRef } value={ value } onChange={ (s) => { - logger.logWarning(`onChange`); onChangeRef.current(s); } } required={ required } diff --git a/web/front_end/about/Changelog.tsx b/web/front_end/about/Changelog.tsx index 8024748e..e34156b7 100644 --- a/web/front_end/about/Changelog.tsx +++ b/web/front_end/about/Changelog.tsx @@ -12,6 +12,9 @@ export const Changelog: React.FC = () => {

Changelog

+
6.2.6
+

Remove chatty log

+
6.2.5
  • Improve client error handling