From 38bbbb81872f88f59f4b0d88bbb0786835b74c7e Mon Sep 17 00:00:00 2001 From: Michael Elliot Date: Wed, 20 Dec 2023 14:02:45 +0800 Subject: [PATCH] chore: show noir tag alongside commit on sandbox startup --- yarn-project/aztec-sandbox/src/bin/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yarn-project/aztec-sandbox/src/bin/index.ts b/yarn-project/aztec-sandbox/src/bin/index.ts index 6e4de4005a5..99309ad01ff 100644 --- a/yarn-project/aztec-sandbox/src/bin/index.ts +++ b/yarn-project/aztec-sandbox/src/bin/index.ts @@ -6,7 +6,7 @@ import { init } from '@aztec/foundation/crypto'; import { createStatusRouter } from '@aztec/foundation/json-rpc/server'; import { createDebugLogger } from '@aztec/foundation/log'; import { fileURLToPath } from '@aztec/foundation/url'; -import { NoirCommit } from '@aztec/noir-compiler/versions'; +import { NoirCommit, NoirTag } from '@aztec/noir-compiler/versions'; import { BootstrapNode, getP2PConfigEnvVars } from '@aztec/p2p'; import { GrumpkinScalar, PXEService, createPXERpcServer } from '@aztec/pxe'; @@ -121,7 +121,7 @@ async function main() { // Code path for starting Sandbox if (mode === SandboxMode.Sandbox) { - logger.info(`Setting up Aztec Sandbox v${version} (noir ${NoirCommit}), please stand by...`); + logger.info(`Setting up Aztec Sandbox v${version} (noir ${NoirCommit} ${NoirTag}), please stand by...`); const { pxe, node, stop, accounts } = await createAndInitialiseSandbox(deployTestAccounts);