Replies: 1 comment 3 replies
-
|
Can we use |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently we have
StartArrowLogwhich in theory should only be called once. Our team is working on an Arrow ODBC driver (#46099) which uses Arrow's logging framework, and the ODBC driver dll needs to support unloading, so any static variables stored at the ODBC dll will be reset after unloading; this prevents ODBC from saving the state of whether Arrow logs have started. Currently there is no check for an API likeArrowLogIsEnabledthat returns whetherStartArrowLogis already run. If we have such an API, it would be helpful to preventStartArrowLogfrom being called twice.What does everyone think?
Beta Was this translation helpful? Give feedback.
All reactions