cloudwego/thriftgo

Proposal: Add a new flag to generate another type String()

Closed this issue · 2 comments

Is your feature request related to a problem? Please describe.

It is inconvenience when I print logs with String().
%#v it is not readable enough.

Describe the solution you'd like

I suppose we could add a new flag to indicate another String() function.
Such as
-generate_json_string() to indicate thriftgo generate the string() function with "json.MarshalString()"

func (p *{{$TypeName}}) String() string {
if p == nil {
return "<nil>"
}
{{- UseStdLibrary "fmt"}}
return fmt.Sprintf("{{$TypeName}}(%+v)", *p)
}

I guess we could change to

func (p *{{$TypeName}}) String() string {
	{{- if Features.NilSafe}}
	if p == nil {
		return ""
	}
       return JSON.MarshalToString()
	{{- end}}

       {{else }}
	if p == nil {
		return "<nil>"
	}
	{{- UseStdLibrary "fmt"}}
	return fmt.Sprintf("{{$TypeName}}(%+v)", *p)
       {{ - end}}
}

I agree.