Skip to content

Commit

Permalink
improve(configStoreClient): Change log severity level about invalid c…
Browse files Browse the repository at this point in the history
…onfig store updates (#782)

Signed-off-by: Matt Rice <[email protected]>
Co-authored-by: Matt Rice <[email protected]>
  • Loading branch information
nicholaspai and mrice32 authored Nov 22, 2024
1 parent 6ccd718 commit 8ea61d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@across-protocol/sdk",
"author": "UMA Team",
"version": "3.3.17",
"version": "3.3.18",
"license": "AGPL-3.0",
"homepage": "https://docs.across.to/reference/sdk",
"files": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ export class AcrossConfigStoreClient extends BaseAbstractClient {
const maxWarnAge = (24 * 60 * 60) / (await utils.averageBlockTimeSeconds());
if (result.searchEndBlock - event.blockNumber < maxWarnAge) {
const errMsg = isError(err) ? err.message : "unknown error";
this.logger.warn({
this.logger.debug({
at: "ConfigStore::update",
message: `Caught error during ConfigStore update: ${errMsg}`,
update: args,
Expand Down

0 comments on commit 8ea61d6

Please sign in to comment.