Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 126408b9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Always use 'bluetooth' for checking loggability" into main

parents 9d9867d4 b93d673e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -29,8 +29,7 @@ static constexpr size_t kBufferSize = 1024;
void vlog(Level level, char const* tag, source_location location,
          fmt::string_view fmt, fmt::format_args vargs) {
  // Check if log is enabled.
  if (!__android_log_is_loggable(level, tag, ANDROID_LOG_INFO) &&
      !__android_log_is_loggable(level, "bluetooth", ANDROID_LOG_INFO)) {
  if (!__android_log_is_loggable(level, "bluetooth", ANDROID_LOG_INFO)) {
    return;
  }