Skip to content

Commit

Permalink
Debug: print what docs type is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
qlido committed Mar 18, 2024
1 parent 54bb8a3 commit 082309d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public ResponseEntity<DocsTypeDto> findAllByDocsType(

DocsType docsType = DocsType.valueOfLabel(stringDocsType);
if (docsType == null) {
System.out.println(docsType.name());
throw DocsTypeNotFoundException.EXCEPTION;
}

Expand Down

0 comments on commit 082309d

Please sign in to comment.