Skip to content

Commit

Permalink
Removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Oct 28, 2021
1 parent 3b06ce7 commit 781d58c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 2 additions & 0 deletions backend/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Server Configuration
#server.port=8080

server.servlet.session.timeout=1m

# Logging Configuration
#logging.config=classpath:log4j2.xml

Expand Down
2 changes: 0 additions & 2 deletions ui/src/app/form/component/widgets/AttributeReleaseWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ const AttributeReleaseWidget = ({

const [bundle, setBundle] = React.useState();

React.useEffect(() => console.log(bundle), [bundle]);

const onMouseOver = (opt) => setBundle(opt);
const onMouseOut = () => setBundle(null);

Expand Down
1 change: 0 additions & 1 deletion ui/src/app/metadata/view/MetadataWizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export function MetadataWizard ({type, data, onCallback}) {
const [blocking, setBlocking] = React.useState(false);

async function save(metadata) {
console.log(metadata);
await post('', metadata);
if (response.ok) {
setBlocking(false);
Expand Down

0 comments on commit 781d58c

Please sign in to comment.