From cafee5c615162958865138c58edcac63302ed8e1 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 11 Mar 2024 14:30:09 +0100 Subject: [PATCH] hoitaja: Print affinity of newly created cell to log. --- repos/os/src/hoitaja/cell.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/os/src/hoitaja/cell.h b/repos/os/src/hoitaja/cell.h index f94d066823..8ceddabe81 100644 --- a/repos/os/src/hoitaja/cell.h +++ b/repos/os/src/hoitaja/cell.h @@ -55,7 +55,7 @@ class Hoitaja::Cell : public ::Sandbox::Child { _priority = ::Sandbox::priority_from_xml(start_node, prio_levels); _priority = (_priority == 0) ? 1 : _priority; - Genode::log("Creating new cell at Hoitaja <", name(), ">"); + Genode::log("Creating new cell at Hoitaja <", name(), "> at ", location, " in ", affinity_space); } virtual ~Cell() { };