diff --git a/cmd/neofs-cli/modules/tree/add_by_path.go b/cmd/neofs-cli/modules/tree/add_by_path.go index 525ea758..1ca9ec46 100644 --- a/cmd/neofs-cli/modules/tree/add_by_path.go +++ b/cmd/neofs-cli/modules/tree/add_by_path.go @@ -83,7 +83,7 @@ func addByPath(cmd *cobra.Command, _ []string) { nn := resp.GetBody().GetNodes() if len(nn) == 0 { - cmd.Println("No new nodes were created") + common.PrintVerbose("No new nodes were created") return } diff --git a/cmd/neofs-cli/modules/tree/get_by_path.go b/cmd/neofs-cli/modules/tree/get_by_path.go index 9c54986b..f49e2b4c 100644 --- a/cmd/neofs-cli/modules/tree/get_by_path.go +++ b/cmd/neofs-cli/modules/tree/get_by_path.go @@ -80,7 +80,7 @@ func getByPath(cmd *cobra.Command, _ []string) { nn := resp.GetBody().GetNodes() if len(nn) == 0 { - cmd.Println("The node is not found") + common.PrintVerbose("The node is not found") return }