How to properly retrieve files from spdlog? #3065
Unanswered
maxim-lbmv
asked this question in
Q&A
Replies: 1 comment 4 replies
-
You can use spdlog/include/spdlog/common.h Lines 328 to 339 in a2b4262 For example, `spdlog::file_event_handlers::after_close(const spdlog::filename_t &)' is a callback that is called after the log file is closed. spdlog/include/spdlog/details/file_helper-inl.h Lines 85 to 98 in a2b4262 |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I need to send log files to the server. After successful transfer of logs to the server, local log files must be deleted. To write logs to files, I use rotating_file_sink_mt. What is the correct way to retrieve current logging data from spdlog for transmission to the server?
Beta Was this translation helpful? Give feedback.
All reactions