Skip to content

Commit 98d3d38

Browse files
authored
DPL: add "dpl/" prefix to task name (#5806)
1 parent 5456372 commit 98d3d38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/CommonServices.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ o2::framework::ServiceSpec CommonServices::infologgerSpec()
199199
}
200200
auto infoLoggerService = new InfoLogger;
201201
auto infoLoggerContext = &services.get<InfoLoggerContext>();
202-
infoLoggerContext->setField(InfoLoggerContext::FieldName::Facility, services.get<DeviceSpec const>().name);
202+
infoLoggerContext->setField(InfoLoggerContext::FieldName::Facility, std::string("dpl/") + services.get<DeviceSpec const>().name);
203203
infoLoggerService->setContext(*infoLoggerContext);
204204

205205
auto infoLoggerSeverity = options.GetPropertyAsString("infologger-severity");

0 commit comments

Comments
 (0)