Skip to content

Commit df86ee6

Browse files
VIA-629 SB Log at debug level, not info.
1 parent f7ba1c6 commit df86ee6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/content-api/parsers/custom/covid-19.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ export const buildFilteredContentForCovid19Vaccine = async (apiContent: string):
2424
let callout: HeadingWithTypedContent | undefined;
2525
const actions: Action[] = [];
2626
if (campaigns.isActive(VaccineType.COVID_19)) {
27-
log.info("Campaign active");
27+
log.debug({ context: { campaigns, vaccineType: VaccineType.COVID_19 } }, "Campaign active");
2828
callout = undefined;
2929
actions.push(...(await _buildActions()));
3030
} else {
31-
log.info("No campaign active");
31+
log.debug({ context: { campaigns, vaccineType: VaccineType.COVID_19 } }, "No campaign active");
3232
callout = {
3333
heading: "Booking service closed",
3434
content: [

0 commit comments

Comments
 (0)