Skip to content

Commit

Permalink
Enable logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bruce-riley committed Aug 1, 2024
1 parent a4146aa commit 1cc3a26
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ generic_relayer = cfg.get("generic_relayer", ci)
query_server = cfg.get("query_server", ci)

if ci:
guardiand_loglevel = cfg.get("guardiand_loglevel", "warn")
guardiand_loglevel = cfg.get("guardiand_loglevel", "info")
else:
guardiand_loglevel = cfg.get("guardiand_loglevel", "info")

Expand Down
2 changes: 1 addition & 1 deletion devnet/query-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ spec:
# Hardcoded devnet bootstrap (generated from deterministic key in guardiand)
- --bootstrap
- /dns4/guardian-0.guardian/udp/8996/quic/p2p/12D3KooWL3XJ9EMCyZvmmGXL2LMiVBtrVa2BuESsJiXkSj7333Jw
- --logLevel=warn
- --logLevel=info
- --shutdownDelay1
- "0"
- --allowAnything
Expand Down
4 changes: 1 addition & 3 deletions sdk/js-query/src/query/solana.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,7 @@ describe("solana", () => {

const sar = queryResponse.responses[0]
.response as SolanaAccountQueryResponse;
expect(sar.slotNumber.toString()).toEqual(
BigInt(minContextSlot).toString()
);
expect(sar.slotNumber.toString()).toEqual(minContextSlot.toString());
expect(sar.blockTime.toString()).not.toEqual(BigInt(0).toString());
expect(sar.results.length).toEqual(2);

Expand Down

0 comments on commit 1cc3a26

Please sign in to comment.