Added non const sinks() function to support addition/removal of sinks from existing logger
This commit is contained in:
		
							parent
							
								
									63db70aacc
								
							
						
					
					
						commit
						ddb3002bc1
					
				@ -338,3 +338,8 @@ inline const std::vector<spdlog::sink_ptr> &spdlog::logger::sinks() const
 | 
			
		||||
{
 | 
			
		||||
    return sinks_;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
inline std::vector<spdlog::sink_ptr> &spdlog::logger::sinks() 
 | 
			
		||||
{
 | 
			
		||||
    return sinks_;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -126,6 +126,8 @@ public:
 | 
			
		||||
 | 
			
		||||
    const std::vector<sink_ptr> &sinks() const;
 | 
			
		||||
 | 
			
		||||
	std::vector<sink_ptr> &sinks() ;
 | 
			
		||||
 | 
			
		||||
    // error handler
 | 
			
		||||
    void set_error_handler(log_err_handler err_handler);
 | 
			
		||||
    log_err_handler error_handler();
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user