로그 정리

This commit is contained in:
2023-06-13 23:54:32 +09:00
parent 4cec01609a
commit 20b2df1fc5
2 changed files with 0 additions and 11 deletions

View File

@ -282,8 +282,6 @@ func NewClient() (HoustonClient, error) {
case shared.Deploy:
var dr shared.DeployRequest
unmarshal(&dr, resp.Args)
shared.Logger().Println(dr.Name, myname)
if dr.Name == myname {
if srcdir, replacer, err := hc.prepareUpdateSelf(&dr); err == nil {
args := []string{
@ -292,7 +290,6 @@ func NewClient() (HoustonClient, error) {
filepath.ToSlash(os.Args[0]),
}
args = append(args, os.Args[1:]...)
shared.Logger().Println(replacer, args)
cmd := exec.Command(replacer, args...)
if err := cmd.Start(); err != nil {
shared.Logger().Println(err)
@ -438,7 +435,6 @@ func (hc *houstonClient) checkOperation() error {
cl.CloseSend()
return err
}
shared.Logger().Println(update)
hc.operationChan <- update
}
}