set logger to info and removed deprecated functions
This commit is contained in:
parent
0e07b02346
commit
efc49e1a2c
@ -3,11 +3,12 @@ package neo4jAPI
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/neo4j/neo4j-go-driver/v5/neo4j"
|
||||
"github.com/neo4j/neo4j-go-driver/v5/neo4j/config"
|
||||
)
|
||||
|
||||
func NewConnection(uri string, username string, password string) (neo4j.DriverWithContext, error) {
|
||||
driver, err := neo4j.NewDriverWithContext(uri, neo4j.BasicAuth(username, password, ""),
|
||||
useConsoleLogger(neo4j.DEBUG))
|
||||
useConsoleLogger(neo4j.INFO))
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("failed to create Neo4j driver: %v", err)
|
||||
}
|
||||
@ -16,7 +17,7 @@ func NewConnection(uri string, username string, password string) (neo4j.DriverWi
|
||||
}
|
||||
|
||||
func useConsoleLogger(level neo4j.LogLevel) func(config *neo4j.Config) {
|
||||
return func(config *neo4j.Config) {
|
||||
return func(config *config.Config) {
|
||||
config.Log = neo4j.ConsoleLogger(level)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user