MCPcopy Create free account
hub / github.com/Simple-XX/SimpleKernel / Warn

Function Warn

src/include/kernel_log.hpp:191–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189/// 以 WARN 级别记录日志
190template <typename... Args>
191inline auto Warn(etl::format_string<Args...> fmt, Args&&... args) -> void {
192 if constexpr (detail::Level::kWarn < detail::kMinLevel) {
193 return;
194 }
195 detail::Log<detail::Level::kWarn>(fmt, static_cast<Args&&>(args)...);
196}
197
198/// 以 ERROR 级别记录日志
199template <typename... Args>

Callers 15

sys_futexFunction · 0.85
WakeUpOtherCoresFunction · 0.85
WakeUpOtherCoresFunction · 0.85
LockMethod · 0.85
UnLockMethod · 0.85
ReapTaskMethod · 0.85
ExitMethod · 0.85
CloneMethod · 0.85
on_event_unknownMethod · 0.85
on_event_unknownMethod · 0.85
on_event_unknownMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected