Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-podolskiy90 committed Aug 22, 2023
1 parent 0f0b6cd commit 10e392e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -831,9 +831,7 @@ public DatasetType resolveType() {
*/
public DatasetSubtype resolveSubtype() {
try {
DatasetSubtype datasetSubtype = VocabularyUtils.lookupEnum(rawSubtype, DatasetSubtype.class);
LOG.debug("Resolving subtype [{}] from source [{}]", datasetSubtype, rawSubtype);
return datasetSubtype;
return VocabularyUtils.lookupEnum(rawSubtype, DatasetSubtype.class);
} catch (Exception e) {
LOG.error("Failed to resolve subtype", e);
return null;
Expand Down

0 comments on commit 10e392e

Please sign in to comment.