Skip to content

Commit 94b2f53

Browse files
committed
Removed unnecessary logging.
1 parent 8bfd6ca commit 94b2f53

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/app/bitstream-page/edit-bitstream-page/edit-bitstream-page.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -614,17 +614,14 @@ export class EditBitstreamPageComponent implements OnInit, OnDestroy {
614614
const primary = rawForm.fileNamePrimaryContainer.primaryBitstream;
615615
Metadata.setFirstValue(newMetadata, 'dc.title', rawForm.fileNamePrimaryContainer.fileName);
616616
Metadata.setFirstValue(newMetadata, 'dc.description', rawForm.descriptionContainer.description);
617-
console.log(this.isIIIF);
618617
if (this.isIIIF) {
619-
console.log(rawForm);
620618
// It's helpful to remove these metadata elements entirely when the form value is empty.
621619
// This avoids potential issues on the REST side and makes it possible to do things like
622620
// remove an existing "table of contents" entry.
623621
if (isEmpty(rawForm.iiifLabelContainer.iiifLabel)) {
624622

625623
delete newMetadata[this.IIIF_LABEL_METADATA];
626624
} else {
627-
console.log(rawForm.iiifLabelContainer.iiifLabel);
628625
Metadata.setFirstValue(newMetadata, this.IIIF_LABEL_METADATA, rawForm.iiifLabelContainer.iiifLabel);
629626
}
630627
if (isEmpty(rawForm.iiifTocContainer.iiifToc)) {

0 commit comments

Comments
 (0)