We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ba1c6 commit df86ee6Copy full SHA for df86ee6
src/services/content-api/parsers/custom/covid-19.tsx
@@ -24,11 +24,11 @@ export const buildFilteredContentForCovid19Vaccine = async (apiContent: string):
24
let callout: HeadingWithTypedContent | undefined;
25
const actions: Action[] = [];
26
if (campaigns.isActive(VaccineType.COVID_19)) {
27
- log.info("Campaign active");
+ log.debug({ context: { campaigns, vaccineType: VaccineType.COVID_19 } }, "Campaign active");
28
callout = undefined;
29
actions.push(...(await _buildActions()));
30
} else {
31
- log.info("No campaign active");
+ log.debug({ context: { campaigns, vaccineType: VaccineType.COVID_19 } }, "No campaign active");
32
callout = {
33
heading: "Booking service closed",
34
content: [
0 commit comments