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 1c3f8ca commit 28bf563
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public ResponseEntity<DocsTypeDto> findAllByDocsType(

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

Expand Down

0 comments on commit 28bf563

Please sign in to comment.