Add LOG_SEVERITY_VERBOSE definition to enable VERBOSE log mode.

PiperOrigin-RevId: 471023073
This commit is contained in:
hai007
2022-08-30 10:10:31 -07:00
committed by Copybara-Service
parent d7889420c4
commit 525283a166
@@ -17,10 +17,14 @@
#include "absl/strings/str_format.h"
#include "connections/core.h"
#include "internal/platform/bluetooth_utils.h"
#include "internal/platform/logging.h"
namespace location::nearby::windows {
Core *InitCore(connections::ServiceControllerRouter *router) {
#if defined(LOG_SEVERITY_VERBOSE)
NEARBY_LOG_SET_SEVERITY(VERBOSE);
#endif // LOG_SEVERITY_VERBOSE;
return new nearby::connections::Core(router);
}