Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ See also https://github.com/neo4j/neo4j-python-driver/wiki for a full changelog.
- `neo4j.graph.Node`, `neo4j.graph.Relationship`, `neo4j.graph.Path`
- `neo4j.time.Date`, `neo4j.time.Time`, `neo4j.time.DateTime`
- `neo4j.spatial.Point` (and subclasses)
- Separate out log entries that are session-related (including transaction retries)
form sub-logger `neo4j.pool` to a new sub-logger `neo4j.session`.


## Version 5.28
Expand Down
2 changes: 1 addition & 1 deletion src/neo4j/_async/work/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
_P = t.ParamSpec("_P")


log = getLogger("neo4j.pool")
log = getLogger("neo4j.session")


class AsyncSession(AsyncWorkspace):
Expand Down
2 changes: 1 addition & 1 deletion src/neo4j/_sync/work/session.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.