Fixed issue #747
This commit is contained in:
		
							parent
							
								
									775e410b00
								
							
						
					
					
						commit
						4f1ce9189f
					
				@ -100,37 +100,37 @@ inline void spdlog::logger::log(level::level_enum lvl, const T &msg)
 | 
				
			|||||||
    SPDLOG_CATCH_AND_HANDLE
 | 
					    SPDLOG_CATCH_AND_HANDLE
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename Arg1, typename... Args>
 | 
					template<typename... Args>
 | 
				
			||||||
inline void spdlog::logger::trace(const char *fmt, const Args &... args)
 | 
					inline void spdlog::logger::trace(const char *fmt, const Args &... args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    log(level::trace, fmt, args...);
 | 
					    log(level::trace, fmt, args...);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename Arg1, typename... Args>
 | 
					template<typename... Args>
 | 
				
			||||||
inline void spdlog::logger::debug(const char *fmt, const Args &... args)
 | 
					inline void spdlog::logger::debug(const char *fmt, const Args &... args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    log(level::debug, fmt, args...);
 | 
					    log(level::debug, fmt, args...);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename Arg1, typename... Args>
 | 
					template<typename... Args>
 | 
				
			||||||
inline void spdlog::logger::info(const char *fmt, const Args &... args)
 | 
					inline void spdlog::logger::info(const char *fmt, const Args &... args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    log(level::info, fmt, args...);
 | 
					    log(level::info, fmt, args...);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename Arg1, typename... Args>
 | 
					template<typename... Args>
 | 
				
			||||||
inline void spdlog::logger::warn(const char *fmt, const Args &... args)
 | 
					inline void spdlog::logger::warn(const char *fmt, const Args &... args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    log(level::warn, fmt, args...);
 | 
					    log(level::warn, fmt, args...);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename Arg1, typename... Args>
 | 
					template<typename... Args>
 | 
				
			||||||
inline void spdlog::logger::error(const char *fmt, const Args &... args)
 | 
					inline void spdlog::logger::error(const char *fmt, const Args &... args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    log(level::err, fmt, args...);
 | 
					    log(level::err, fmt, args...);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename Arg1, typename... Args>
 | 
					template<typename... Args>
 | 
				
			||||||
inline void spdlog::logger::critical(const char *fmt, const Args &... args)
 | 
					inline void spdlog::logger::critical(const char *fmt, const Args &... args)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    log(level::critical, fmt, args...);
 | 
					    log(level::critical, fmt, args...);
 | 
				
			||||||
 | 
				
			|||||||
@ -45,22 +45,22 @@ public:
 | 
				
			|||||||
    template<typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void log(level::level_enum lvl, const char *msg);
 | 
					    void log(level::level_enum lvl, const char *msg);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    template<typename Arg1, typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void trace(const char *fmt, const Args &... args);
 | 
					    void trace(const char *fmt, const Args &... args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    template<typename Arg1, typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void debug(const char *fmt, const Args &... args);
 | 
					    void debug(const char *fmt, const Args &... args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    template<typename Arg1, typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void info(const char *fmt, const Args &... args);
 | 
					    void info(const char *fmt, const Args &... args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    template<typename Arg1, typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void warn(const char *fmt, const Args &... args);
 | 
					    void warn(const char *fmt, const Args &... args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    template<typename Arg1, typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void error(const char *fmt, const Args &... args);
 | 
					    void error(const char *fmt, const Args &... args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    template<typename Arg1, typename... Args>
 | 
					    template<typename... Args>
 | 
				
			||||||
    void critical(const char *fmt, const Args &... args);
 | 
					    void critical(const char *fmt, const Args &... args);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
 | 
					#ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user