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

Commit 04d60364 authored by Chris Manton's avatar Chris Manton
Browse files

Add gd module logging message

Bug: 184608842
Test: gd/cert/run
Tag: #refactor
BYPASS_LONG_LINES_REASON: Bluetooth likes 120 lines

Change-Id: Iae42c3b4aa36e7d00dad980b40612a496dfd8e24
parent cc8639fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ Module* Module::GetDependency(const ModuleFactory* module) const {

Module* ModuleRegistry::Get(const ModuleFactory* module) const {
  auto instance = started_modules_.find(module);
  ASSERT(instance != started_modules_.end());
  ASSERT_LOG(instance != started_modules_.end(), "Request for module not started up, maybe not in Start(ModuleList)?");
  return instance->second;
}