From e49676fd46384ec8860539cb228f6e433f32e875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADt=20Ku=C4=8Dera?= <26327373+vkucera@users.noreply.github.com> Date: Wed, 22 Oct 2025 13:35:30 +0200 Subject: [PATCH] Fix typo in log message --- Framework/Core/src/runDataProcessing.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/runDataProcessing.cxx b/Framework/Core/src/runDataProcessing.cxx index 1611eb8605134..900769adb780d 100644 --- a/Framework/Core/src/runDataProcessing.cxx +++ b/Framework/Core/src/runDataProcessing.cxx @@ -1022,7 +1022,7 @@ int doChild(int argc, char** argv, ServiceRegistry& serviceRegistry, fair::Logger::SetConsoleColor(false); fair::Logger::OnFatal([]() { throw runtime_error("Fatal error"); }); DeviceSpec const& spec = runningWorkflow.devices[ref.index]; - LOG(info) << "Spawing new device " << spec.id << " in process with pid " << getpid(); + LOG(info) << "Spawning new device " << spec.id << " in process with pid " << getpid(); fair::mq::DeviceRunner runner{argc, argv};