Skip to content

Commit 3d2947b

Browse files
authored
Merge pull request #2479 from pyth-network/price-pusher-logs
2 parents 2699171 + 04dafdd commit 3d2947b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

apps/price_pusher/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pythnetwork/price-pusher",
3-
"version": "9.1.0",
3+
"version": "9.1.1",
44
"description": "Pyth Price Pusher",
55
"homepage": "https://pyth.network",
66
"main": "lib/index.js",

apps/price_pusher/src/price-config.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,11 @@ export function shouldUpdate(
128128
);
129129

130130
logger.info(
131-
{ sourcePrice: sourceLatestPrice, targetPrice: targetLatestPrice },
131+
{
132+
sourcePrice: sourceLatestPrice,
133+
targetPrice: targetLatestPrice,
134+
symbol: priceConfig.alias,
135+
},
132136
`Analyzing price ${priceConfig.alias} (${priceId}). ` +
133137
`Time difference: ${timeDifference} (< ${priceConfig.timeDifference}? / early: < ${priceConfig.earlyUpdateTimeDifference}) OR ` +
134138
`Price deviation: ${priceDeviationPct.toFixed(5)}% (< ${

0 commit comments

Comments
 (0)