qosd: разбил слишком длинную строку

This commit is contained in:
Сергей Маринкевич
2025-10-08 17:47:05 +07:00
parent eff0b26a53
commit 1897f82b9e
+7 -2
View File
@@ -12,12 +12,17 @@ class LeafNode : public BaseNode,
virtual public LazyLinkMixin<LeafLink<INode>> {
public:
~LeafNode() {
Logger::get("ConDes").dbg(std::string("--- Leaf destructor called for: ") + name_);
Logger::get("ConDes").dbg(
std::string("--- Leaf destructor called for: ") + name_
);
}
protected:
LeafNode(std::string name, std::string kind) :
BaseNode(std::move(name), std::move(kind)) {
Logger::get("ConDes").dbg(std::string("--- Leaf constructor called for: ") + name_ + ", kind=" + kind_);
Logger::get("ConDes").dbg(
std::string("--- Leaf constructor called for: ") +
name_ + ", kind=" + kind_
);
}
};