If you want to make your bot use spdlog, like aegis does, you can attach it to the on_log event. You can do this as follows:
#include <spdlog/spdlog.h>
#include <spdlog/async.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/sinks/rotating_file_sink.h>
#include <iomanip>
#include <dpp/dpp.h>
#include <fmt/format.h>
int main(int argc, char const *argv[]) {
const std::string log_name = "mybot.log";
std::shared_ptr<spdlog::logger> log;
spdlog::init_thread_pool(8192, 2);
std::vector<spdlog::sink_ptr> sinks;
auto stdout_sink = std::make_shared<spdlog::sinks::stdout_color_sink_mt >();
auto rotating = std::make_shared<spdlog::sinks::rotating_file_sink_mt>(log_name, 1024 * 1024 * 5, 10);
sinks.push_back(stdout_sink);
sinks.push_back(rotating);
log = std::make_shared<spdlog::async_logger>("logs", sinks.begin(), sinks.end(), spdlog::thread_pool(), spdlog::async_overflow_policy::block);
spdlog::register_logger(log);
log->set_pattern("%^%Y-%m-%d %H:%M:%S.%e [%L] [th#%t]%$ : %v");
log->set_level(spdlog::level::level_enum::debug);
bot.on_log([&bot, &log](
const dpp::log_t & event) {
break;
break;
break;
break;
break;
default:
log->critical(
"{}", event.
message);
break;
}
});
return 0;
}
The cluster class represents a group of shards and a command queue for sending and receiving commands...
Definition cluster.h:89
@ ll_error
Error.
Definition misc-enum.h:81
@ ll_info
Information.
Definition misc-enum.h:71
@ ll_debug
Debug.
Definition misc-enum.h:66
@ ll_trace
Trace.
Definition misc-enum.h:61
@ ll_critical
Critical.
Definition misc-enum.h:86
@ ll_warning
Warning.
Definition misc-enum.h:76
@ st_wait
Wait forever on a condition variable. The cluster will spawn threads for each shard and start() will ...
Definition cluster.h:72
Log messages.
Definition dispatcher.h:201
std::string message
Log Message.
Definition dispatcher.h:213
loglevel severity
Severity.
Definition dispatcher.h:208