Skip to content

Commit 935b628

Browse files
committed
remove debug log
1 parent 5ea9ac4 commit 935b628

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.8.9
2+
* Removing debug print to log
3+
14
## 3.8.8
25
* Refactoring session shutdown test
36

internal/meta/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package meta
22

33
const (
4-
Version = "ydb-go-sdk/3.8.8"
4+
Version = "ydb-go-sdk/3.8.9"
55
)

internal/table/session.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package table
22

33
import (
44
"context"
5-
"fmt"
65
"net/url"
76
"strconv"
87
"sync"
@@ -105,18 +104,15 @@ func newSession(ctx context.Context, cc grpc.ClientConnInterface, t trace.Table)
105104
&Ydb_Table.CreateSessionRequest{},
106105
)
107106
if err != nil {
108-
fmt.Println("exit 1")
109107
return nil, err
110108
}
111109
err = proto.Unmarshal(
112110
response.GetOperation().GetResult().GetValue(),
113111
&result,
114112
)
115113
if err != nil {
116-
fmt.Println("exit 2")
117114
return nil, err
118115
}
119-
fmt.Println("exit 3")
120116
return &session{
121117
id: result.GetSessionId(),
122118
tableService: c,

0 commit comments

Comments
 (0)