Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion yarn-project/aztec/src/cli/cmds/start_p2p_bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export async function startP2PBootstrap(
) {
// Start a P2P bootstrap node.
const config = extractRelevantOptions<BootnodeConfig>(options, bootnodeConfigMappings, 'p2p');
userLog(`Starting P2P bootstrap node with config: ${jsonStringify(config)}`);
const safeConfig = { ...config, peerIdPrivateKey: '<redacted>' };
userLog(`Starting P2P bootstrap node with config: ${jsonStringify(safeConfig)}`);
const telemetryClient = initTelemetryClient(getTelemetryClientConfig());
const store = await createStore('p2p-bootstrap', 1, config, createLogger('p2p:bootstrap:store'));
const node = new BootstrapNode(store, telemetryClient);
Expand Down