no-truncate shorthand flag

This commit is contained in:
afjcjsbx 2026-03-10 00:15:47 +01:00
parent b42bb103f6
commit 1640593d9b

View file

@ -36,7 +36,7 @@ func NewGatewayCommand() *cobra.Command {
}
cmd.Flags().BoolVarP(&debug, "debug", "d", false, "Enable debug logging")
cmd.Flags().BoolVar(&noTruncate, "no-truncate", false, "Disable string truncation in debug logs")
cmd.Flags().BoolVarP(&noTruncate, "no-truncate", "T", false, "Disable string truncation in debug logs")
return cmd
}