summaryrefslogtreecommitdiff
path: root/system/test/common/init_flags.cc
blob: 9b8585ba456237054448750fa466b125e348906e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23


#include <map>
#include <string>

#include "gd/common/init_flags.h"

namespace bluetooth {
namespace common {

bool InitFlags::logging_debug_enabled_for_all = false;
std::unordered_map<std::string, bool>
    InitFlags::logging_debug_explicit_tag_settings = {};
void InitFlags::Load(const char** flags) {}
void InitFlags::SetAll(bool value) {
  InitFlags::logging_debug_enabled_for_all = value;
}
void InitFlags::SetAllForTesting() {
  InitFlags::logging_debug_enabled_for_all = true;
}

}  // namespace common
}  // namespace bluetooth