log_msg to contain logger_name + astyle
This commit is contained in:
		@@ -21,7 +21,9 @@ public:
 | 
			
		||||
    stack_devicebuf(const stack_devicebuf& other) :std::basic_streambuf<char>(), _stackbuf(other._stackbuf)
 | 
			
		||||
    {}
 | 
			
		||||
 | 
			
		||||
    stack_devicebuf(stack_devicebuf&& other) :std::basic_streambuf<char>(), _stackbuf(std::move(other._stackbuf))
 | 
			
		||||
    stack_devicebuf(stack_devicebuf&& other):
 | 
			
		||||
        std::basic_streambuf<char>(),
 | 
			
		||||
        _stackbuf(std::move(other._stackbuf))
 | 
			
		||||
    {
 | 
			
		||||
        other.clear();
 | 
			
		||||
    }
 | 
			
		||||
@@ -102,4 +104,4 @@ private:
 | 
			
		||||
    stack_devicebuf _dev;
 | 
			
		||||
};
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user