Skip to content

Commit

Permalink
includes node's name in the directory log
Browse files Browse the repository at this point in the history
  • Loading branch information
staheri14 committed Apr 3, 2024
1 parent 2283114 commit a52a41c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func (n *Node) Init(genesis *types.GenesisDoc, peers []string) error {
// Initialize file directories
rootDir := os.TempDir()
nodeDir := filepath.Join(rootDir, n.Name)
log.Info().Msgf("node directory: %s", nodeDir)
log.Info().Msgf("Directory for node '%s': %s", n.Name, nodeDir)
for _, dir := range []string{
filepath.Join(nodeDir, "config"),
filepath.Join(nodeDir, "data"),
Expand Down

0 comments on commit a52a41c

Please sign in to comment.