2022-01-08 20:02:04 +01:00
|
|
|
#include <iostream>
|
2022-01-08 21:57:17 +01:00
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
#include <spdlog/sinks/stdout_sinks.h>
|
2022-01-08 20:02:04 +01:00
|
|
|
|
|
|
|
int main() {
|
2022-01-08 21:57:17 +01:00
|
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
spdlog::set_default_logger(spdlog::stdout_logger_st("console"));
|
|
|
|
SPDLOG_WARN("Hello world !");
|
2022-01-08 20:02:04 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|