Skip to content

Commit a4e2a96

Browse files
committed
Improve log to make it easier to find in the source
1 parent d148875 commit a4e2a96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

base/cvd/cuttlefish/host/libs/process_monitor/process_monitor.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ Result<void> ProcessMonitor::StartSubprocesses(
258258
ProcessMonitor::Properties& properties) {
259259
VLOG(0) << "Starting monitored subprocesses";
260260
for (auto& monitored : properties.entries_) {
261-
LOG(INFO) << monitored.cmd->GetShortName();
261+
LOG(INFO) << "Starting monitored subprocess: "
262+
<< monitored.cmd->GetShortName();
262263
auto options = SubprocessOptions().InGroup(true);
263264
std::string short_name = monitored.cmd->GetShortName();
264265
auto last_slash = short_name.find_last_of('/');

0 commit comments

Comments
 (0)