Skip to content

Commit c3044c3

Browse files
Remove log
1 parent 11eda79 commit c3044c3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

gotty/webtty/webtty.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"encoding/base64"
66
"encoding/json"
77
"github.com/pkg/errors"
8-
"log"
98
"os"
109
"strconv"
1110
"sync"
@@ -80,7 +79,6 @@ func (wt *WebTTY) Run(ctx context.Context) error {
8079
errs <- func() error {
8180
defer func() {
8281
if e := recover(); e != nil {
83-
log.Printf("Panicing %s", e)
8482
}
8583
}()
8684
for {
@@ -103,7 +101,6 @@ func (wt *WebTTY) Run(ctx context.Context) error {
103101
errs <- func() error {
104102
defer func() {
105103
if e := recover(); e != nil {
106-
log.Printf("Panicing %s", e)
107104
}
108105
}()
109106
for {

0 commit comments

Comments
 (0)