remove debug statement

This commit is contained in:
Florian Lüke 2024-12-27 20:15:55 +01:00
parent 06da32c728
commit 5764d7f9c0

View file

@ -61,9 +61,6 @@ struct ObjectPath
objectName = components.back(); objectName = components.back();
components.pop_back(); components.pop_back();
} }
spdlog::debug("ObjectPath: objectName={}, components={}", objectName,
fmt::join(components, ", "));
} }
}; };