qosd: разбил слишком длинную строку
This commit is contained in:
@@ -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_
|
||||||
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user