This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
restore: add
glue.Glue
interface and other function #456restore: add
glue.Glue
interface and other function #456Changes from 10 commits
b4aeb1e
a5666a6
5b79eda
51e8c0e
02f3ac5
84d27f3
114d7f1
d13bc83
22d2f4e
c55f5aa
d0d01b9
4fc56ec
e85c0b2
5811245
d75e0b9
19d3aa5
c264392
f50ecb0
9e595e8
dbee87d
e081a6d
a4b9fc8
f184e32
6e4da0a
679b62d
832f65c
4140470
33150d2
7b368d8
aa921dd
71581a3
8fb2745
481dbf4
04a0b7f
8978d8b
70188c4
15376ff
ff5c065
1b446e5
14cc270
1da5464
e880ad1
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why pass a logger through the interface?
What about passing a logger when we creating an SQLExecutor instance?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some functions need a logger from
Task
, and thatTask
is often built from logger with different fields. It seems that pinning a logger atNew
is not very flexible