mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 00:13:37 +00:00
16 lines
232 B
C++
16 lines
232 B
C++
#pragma once
|
|
|
|
#include <cstdarg>
|
|
#include <cstdio>
|
|
|
|
namespace Log {
|
|
|
|
inline void info(const char* fmt, ...) {
|
|
va_list args;
|
|
va_start(args, fmt);
|
|
std::vfprintf(stderr, fmt, args);
|
|
va_end(args);
|
|
}
|
|
|
|
} // namespace Log
|