로그 변경
This commit is contained in:
@ -110,7 +110,6 @@ type houstonClient struct {
|
||||
|
||||
func unmarshal[T any](val *T, src map[string]string) {
|
||||
argval := reflect.ValueOf(val)
|
||||
logger.Println("operation receive :", argval.Type().Name(), src)
|
||||
for i := 0; i < argval.Elem().Type().NumField(); i++ {
|
||||
if !argval.Elem().Type().Field(i).IsExported() {
|
||||
continue
|
||||
@ -126,6 +125,7 @@ func unmarshal[T any](val *T, src map[string]string) {
|
||||
argval.Elem().Field(i).SetString(arg)
|
||||
}
|
||||
}
|
||||
logger.Println("operation receive :", argval.Elem().Type().Name(), *val)
|
||||
}
|
||||
|
||||
func gatherDeployedPrograms(storageRoot, name string) []*protos.VersionAndArgs {
|
||||
|
||||
Reference in New Issue
Block a user