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

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