Skip to content

Commit

Permalink
change debug to info (#326)
Browse files Browse the repository at this point in the history
* change debug to info

* auto patch increment

---------

Co-authored-by: ras-rm-pr-bot <[email protected]>
  • Loading branch information
anwilkie and ras-rm-pr-bot authored Dec 4, 2023
1 parent a37c8b9 commit cccee37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions _infra/helm/collection-exercise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 13.0.24
version: 13.0.25

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 13.0.24
appVersion: 13.0.25

Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public SampleUnitDTO[] requestSampleUnitsForSampleSummary(UUID sampleSummaryId,
queryParams.add("state", SampleUnitDTO.SampleUnitState.FAILED.name());
}

log.with("sampleSummaryId", sampleSummaryId).debug("request sample units for sample summary");
log.with("sampleSummaryId", sampleSummaryId).info("request sample units for sample summary");
UriComponents uriComponents =
restUtility.createUriComponents(
appConfig.getSampleSvc().getRequestSampleUnitsForSampleSummaryPath(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ public ResponseEntity<List<UUID>> requestLinkedSampleSummaries(
private CollectionExerciseDTO getCollectionExerciseDTO(
final CollectionExercise collectionExercise) {
log.with("collection_exercise_id", collectionExercise.getId())
.debug("Populating data for requested collection exercise");
.info("Populating data for requested collection exercise");

CollectionExerciseDTO collectionExerciseDTO =
ObjectConverter.collectionExerciseDTO(collectionExercise);
Expand Down

0 comments on commit cccee37

Please sign in to comment.