Skip to content

Commit

Permalink
Remove chatty log
Browse files Browse the repository at this point in the history
  • Loading branch information
threecgreen committed Oct 3, 2021
1 parent c90cd2d commit 7f8431c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <cartergr@usc.edu>"]
readme = "./README.md"
Expand Down
2 changes: 0 additions & 2 deletions web/components/model_inputs/ProducerInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const ProducerInput: React.FC<IProps> = ({value, required, ...props}) =>
const inputRef = React.useRef() as React.MutableRefObject<HTMLInputElement>;
const onChangeRef = React.useRef((_: string) => { return; });
React.useEffect(() => {
// logger.logWarning(`onChange effect`);
onChangeRef.current = props.onChange;
}, [props.onChange]);

Expand All @@ -41,7 +40,6 @@ export const ProducerInput: React.FC<IProps> = ({value, required, ...props}) =>
inputRef={ inputRef }
value={ value }
onChange={ (s) => {
logger.logWarning(`onChange`);
onChangeRef.current(s);
} }
required={ required }
Expand Down
3 changes: 3 additions & 0 deletions web/front_end/about/Changelog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ export const Changelog: React.FC<RouteComponentProps> = () => {
<div className="text-container">
<h1 className="page-title med-heading">Changelog</h1>

<h5>6.2.6</h5>
<p>Remove chatty log</p>

<h5>6.2.5</h5>
<ul className="bullets">
<li>Improve client error handling</li>
Expand Down

0 comments on commit 7f8431c

Please sign in to comment.