Skip to content

Commit ee542ef

Browse files
cfergeaupraveenkumar
authored andcommitted
config: Improve default value message
This follows the advice from #3694 (comment)
1 parent 836c00e commit ee542ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/crc/cmd/config/get.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func configGetCmd(config config.Storage) *cobra.Command {
2828
telemetry.SetConfigurationKey(cmd.Context(), args[0])
2929

3030
if v.IsDefault {
31-
fmt.Printf("Configuration property '%s' is not set. Default value is '%s'\n", key, v.AsString())
31+
fmt.Printf("Configuration property '%s' is not set. Default value '%s' is used\n", key, v.AsString())
3232
} else {
3333
fmt.Println(key, ":", v.AsString())
3434
}

0 commit comments

Comments
 (0)