|
@ -1,6 +1,12 @@ |
|
|
#include "spdlog/spdlog.h"
|
|
|
#include "spdlog/spdlog.h"
|
|
|
|
|
|
#include "configs/config.hpp"
|
|
|
|
|
|
using namespace iflytop; |
|
|
|
|
|
using namespace core; |
|
|
|
|
|
using namespace std; |
|
|
int main() |
|
|
int main() |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
shared_ptr<Config> config; |
|
|
spdlog::info("Welcome to spdlog!"); |
|
|
spdlog::info("Welcome to spdlog!"); |
|
|
spdlog::error("Some error message with arg: {}", 1); |
|
|
spdlog::error("Some error message with arg: {}", 1); |
|
|
|
|
|
|
|
|