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