Skip to content

Commit f8f40e9

Browse files
committed
Fix receiver type when logging Bolt failure messages
1 parent ba06254 commit f8f40e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo4j/internal/bolt/logging.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func formatOmittingZero(i int64) string {
7777

7878
type loggableFailure db.Neo4jError
7979

80-
func (f *loggableFailure) String() string {
80+
func (f loggableFailure) String() string {
8181
return serializeTrace(map[string]interface{}{
8282
"code": f.Code,
8383
"message": f.Msg,

0 commit comments

Comments
 (0)