Skip to content

Commit

Permalink
fix flow
Browse files Browse the repository at this point in the history
  • Loading branch information
costaluu committed Sep 14, 2024
1 parent b90bb62 commit 5bd0c9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/delimeter.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var DelimeterDeleteCommand *cli.Command = &cli.Command{
args := ctx.Args().Slice()

if len(args) != 3 {
logger.Info[string](fmt.Sprintf("usage: %s delimeters %s", constants.COMMAND, ctx.Command.ArgsUsage))
logger.Result[string](fmt.Sprintf("usage: %s delimeters %s", constants.COMMAND, ctx.Command.ArgsUsage))

return nil
}
Expand Down
2 changes: 1 addition & 1 deletion src/core/blocks.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func ToggleBlockFeature(featureName string, state string) {
}

if !foundFeature {
logger.Info[string](fmt.Sprintf("feature %s does not exists"))
logger.Result[string](fmt.Sprintf("feature %s does not exists"))
}

for path, blockList := range blocksSet {
Expand Down

0 comments on commit 5bd0c9b

Please sign in to comment.