로그 변경

This commit is contained in:
2023-11-25 22:16:12 +09:00
parent cfd6e23384
commit 72b88b194f

View File

@ -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 {