Loading init/devices.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -294,7 +294,7 @@ static void add_platform_device(const char *path) name += 9; } LOG(INFO) << "adding platform device " << name << " (" << path << ")"; LOG(VERBOSE) << "adding platform device " << name << " (" << path << ")"; bus = (platform_node*) calloc(1, sizeof(struct platform_node)); bus->path = strdup(path); Loading init/service.cpp +5 −5 Original line number Diff line number Diff line Loading @@ -561,7 +561,7 @@ bool Service::Start() { } } LOG(VERBOSE) << "starting service '" << name_ << "'..."; LOG(INFO) << "starting service '" << name_ << "'..."; pid_t pid = -1; if (namespace_flags_) { Loading Loading @@ -939,13 +939,13 @@ bool ServiceManager::ReapOneProcess() { } if (WIFEXITED(status)) { LOG(VERBOSE) << name << " exited with status " << WEXITSTATUS(status); LOG(INFO) << name << " exited with status " << WEXITSTATUS(status); } else if (WIFSIGNALED(status)) { LOG(VERBOSE) << name << " killed by signal " << WTERMSIG(status); LOG(INFO) << name << " killed by signal " << WTERMSIG(status); } else if (WIFSTOPPED(status)) { LOG(VERBOSE) << name << " stopped by signal " << WSTOPSIG(status); LOG(INFO) << name << " stopped by signal " << WSTOPSIG(status); } else { LOG(VERBOSE) << name << " state changed"; LOG(INFO) << name << " state changed"; } if (!svc) { Loading Loading
init/devices.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -294,7 +294,7 @@ static void add_platform_device(const char *path) name += 9; } LOG(INFO) << "adding platform device " << name << " (" << path << ")"; LOG(VERBOSE) << "adding platform device " << name << " (" << path << ")"; bus = (platform_node*) calloc(1, sizeof(struct platform_node)); bus->path = strdup(path); Loading
init/service.cpp +5 −5 Original line number Diff line number Diff line Loading @@ -561,7 +561,7 @@ bool Service::Start() { } } LOG(VERBOSE) << "starting service '" << name_ << "'..."; LOG(INFO) << "starting service '" << name_ << "'..."; pid_t pid = -1; if (namespace_flags_) { Loading Loading @@ -939,13 +939,13 @@ bool ServiceManager::ReapOneProcess() { } if (WIFEXITED(status)) { LOG(VERBOSE) << name << " exited with status " << WEXITSTATUS(status); LOG(INFO) << name << " exited with status " << WEXITSTATUS(status); } else if (WIFSIGNALED(status)) { LOG(VERBOSE) << name << " killed by signal " << WTERMSIG(status); LOG(INFO) << name << " killed by signal " << WTERMSIG(status); } else if (WIFSTOPPED(status)) { LOG(VERBOSE) << name << " stopped by signal " << WSTOPSIG(status); LOG(INFO) << name << " stopped by signal " << WSTOPSIG(status); } else { LOG(VERBOSE) << name << " state changed"; LOG(INFO) << name << " state changed"; } if (!svc) { Loading