-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SDL 0046] Implement logger abstraction #3472
[SDL 0046] Implement logger abstraction #3472
Conversation
LoggerImpl::LoggerImpl(bool use_message_loop_thread) | ||
: impl_(nullptr), use_message_loop_thread_(use_message_loop_thread) { | ||
if (!use_message_loop_thread_) | ||
logger::logger_status = LogerThreadIsNotUsed; |
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.
Loger -> Logger
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.
Fixed.
7ab7d47
to
5749f3d
Compare
@LuxoftAKutsan please mark as review ready. Currently this pr is marked as not ready for review. |
@theresalech Ford has approved of this PR. Thanks! |
...onents/application_manager/rpc_plugins/rc_rpc_plugin/src/resource_allocation_manager_impl.cc
Outdated
Show resolved
Hide resolved
src/components/application_manager/include/application_manager/application_manager_impl.h
Outdated
Show resolved
Hide resolved
src/components/application_manager/include/application_manager/application_manager_impl.h
Outdated
Show resolved
Hide resolved
src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_helpers.cc
Outdated
Show resolved
Hide resolved
src/components/application_manager/rpc_plugins/rc_rpc_plugin/src/rc_helpers.cc
Outdated
Show resolved
Hide resolved
src/components/transport_manager/src/bluetooth/bluetooth_device_scanner.cc
Outdated
Show resolved
Hide resolved
@ShobhitAd All requested changes have been prepared. |
Create one logger instance for shared libraries
…rc/resource_allocation_manager_impl.cc Co-authored-by: Shobhit Adlakha <[email protected]>
54d19cf
to
3ee8ad4
Compare
Fixes #1480
This PR is ready for review.
Risk
This PR makes no API changes.
Testing Plan
Summary
Implemented and integrated logger abstraction.
CLA