Lines Matching full:args

115 template <LogLevel level, typename... Args>
116 inline void vlog(std::format_string<Args...>&& format, Args&&... args, in vlog() argument
140 std::format(std::move(format), std::forward<Args>(args)...); in vlog()
155 template <typename... Args>
159 BMCWEB_LOG_CRITICAL(std::format_string<Args...> format, Args&&... args, in BMCWEB_LOG_CRITICAL()
163 crow::vlog<crow::LogLevel::Critical, Args...>( in BMCWEB_LOG_CRITICAL()
164 std::move(format), std::forward<Args>(args)..., loc); in BMCWEB_LOG_CRITICAL()
168 template <typename... Args>
172 BMCWEB_LOG_ERROR(std::format_string<Args...> format, Args&&... args, in BMCWEB_LOG_ERROR()
176 crow::vlog<crow::LogLevel::Error, Args...>( in BMCWEB_LOG_ERROR()
177 std::move(format), std::forward<Args>(args)..., loc); in BMCWEB_LOG_ERROR()
181 template <typename... Args>
185 BMCWEB_LOG_WARNING(std::format_string<Args...> format, Args&&... args, in BMCWEB_LOG_WARNING()
189 crow::vlog<crow::LogLevel::Warning, Args...>( in BMCWEB_LOG_WARNING()
190 std::move(format), std::forward<Args>(args)..., loc); in BMCWEB_LOG_WARNING()
194 template <typename... Args>
198 BMCWEB_LOG_INFO(std::format_string<Args...> format, Args&&... args, in BMCWEB_LOG_INFO()
202 crow::vlog<crow::LogLevel::Info, Args...>( in BMCWEB_LOG_INFO()
203 std::move(format), std::forward<Args>(args)..., loc); in BMCWEB_LOG_INFO()
207 template <typename... Args>
211 BMCWEB_LOG_DEBUG(std::format_string<Args...> format, Args&&... args, in BMCWEB_LOG_DEBUG()
215 crow::vlog<crow::LogLevel::Debug, Args...>( in BMCWEB_LOG_DEBUG()
216 std::move(format), std::forward<Args>(args)..., loc); in BMCWEB_LOG_DEBUG()
220 template <typename... Args>
221 BMCWEB_LOG_CRITICAL(std::format_string<Args...>, Args&&...)
222 -> BMCWEB_LOG_CRITICAL<Args...>;
224 template <typename... Args>
225 BMCWEB_LOG_ERROR(std::format_string<Args...>, Args&&...)
226 -> BMCWEB_LOG_ERROR<Args...>;
228 template <typename... Args>
229 BMCWEB_LOG_WARNING(std::format_string<Args...>, Args&&...)
230 -> BMCWEB_LOG_WARNING<Args...>;
232 template <typename... Args>
233 BMCWEB_LOG_INFO(std::format_string<Args...>, Args&&...)
234 -> BMCWEB_LOG_INFO<Args...>;
236 template <typename... Args>
237 BMCWEB_LOG_DEBUG(std::format_string<Args...>, Args&&...)
238 -> BMCWEB_LOG_DEBUG<Args...>;