Skip to content

Commit

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

This reverts commit cccee37.

* manually increment chart version
  • Loading branch information
anwilkie authored Dec 6, 2023
1 parent cccee37 commit 4830e17
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.25
version: 13.0.26

# 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.25
appVersion: 13.0.26

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).info("request sample units for sample summary");
log.with("sampleSummaryId", sampleSummaryId).debug("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())
.info("Populating data for requested collection exercise");
.debug("Populating data for requested collection exercise");

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

0 comments on commit 4830e17

Please sign in to comment.