set logger to info and removed deprecated functions

This commit is contained in:
David Janowski 2023-05-30 14:04:39 +02:00
parent 0e07b02346
commit efc49e1a2c

View File

@ -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)
}
}