Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ public boolean recordArtifact( TrackedContentEntry contentEntry )
}
catch ( final ContentException | IndyWorkflowException e )
{
logger.error( "Failed to read TrackedContentEntry.", e );
logger.error( "Failed to record entry: {}.", contentEntry, e );
}
return isRecorded;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public Response recordArtifact( @Parameter( in = PATH, required = true ) @PathPa
Boolean result = controller.recordArtifact( contentEntry );
if ( result )
{
logger.debug( "Done for path {}, id {} artifact record.", path, id );
logger.info( "Entry record done, path: {}, id: {}.", path, id );
return Response.ok().build();
}
return Response.status( Response.Status.NOT_FOUND ).build();
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,6 @@ quarkus:
keyspaceReplicas: 1
indy_security:
enabled: false
kafka:
bootstrap:
servers: "localhost:9092"