40 return fwrite(str.data(), 1, str.size(), fp);
48 assert(m_fileout ==
nullptr);
57 setbuf(m_fileout,
nullptr);
66 while (!m_msgs_before_open.empty()) {
67 const std::string& s = m_msgs_before_open.front();
71 for (
const auto& cb : m_print_callbacks) {
75 m_msgs_before_open.pop_front();
86 if (m_fileout !=
nullptr) fclose(m_fileout);
88 m_print_callbacks.clear();
100 EnableCategory(flag);
106 m_categories &= ~flag;
113 DisableCategory(flag);
119 return (m_categories.load(std::memory_order_relaxed) & category) != 0;
172 if (category_desc.category == str) {
173 flag = category_desc.flag;
182 std::vector<LogCategory> ret;
187 catActive.
category = category_desc.category;
188 catActive.
active = WillLogCategory(category_desc.flag);
189 ret.push_back(catActive);
197 std::string strStamped;
199 if (!m_log_timestamps)
202 if (m_started_new_line) {
205 if (m_log_time_micros) {
206 strStamped.pop_back();
207 strStamped +=
strprintf(
".%06dZ", nTimeMicros%1000000);
213 strStamped +=
' ' + str;
230 for (
char ch_in : str) {
231 uint8_t ch = (uint8_t)ch_in;
232 if ((ch >= 32 || ch ==
'\n') && ch !=
'\x7f') {
242 void BCLog::Logger::LogPrintStr(
const std::string& str,
const std::string& logging_function,
const std::string& source_file,
const int source_line)
247 if (m_log_sourcelocations && m_started_new_line) {
248 str_prefixed.insert(0,
"[" +
RemovePrefix(source_file,
"./") +
":" +
ToString(source_line) +
"] [" + logging_function +
"] ");
251 if (m_log_threadnames && m_started_new_line) {
255 str_prefixed = LogTimestampStr(str_prefixed);
257 m_started_new_line = !str.empty() && str[str.size()-1] ==
'\n';
261 m_msgs_before_open.push_back(str_prefixed);
265 if (m_print_to_console) {
267 fwrite(str_prefixed.data(), 1, str_prefixed.size(), stdout);
270 for (
const auto& cb : m_print_callbacks) {
273 if (m_print_to_file) {
274 assert(m_fileout !=
nullptr);
278 m_reopen_file =
false;
281 setbuf(new_fileout,
nullptr);
283 m_fileout = new_fileout;
293 constexpr
size_t RECENT_DEBUG_HISTORY_SIZE = 10 * 1000000;
295 assert(!m_file_path.empty());
303 log_size = fs::file_size(m_file_path);
304 }
catch (
const fs::filesystem_error&) {}
308 if (file && log_size > 11 * (RECENT_DEBUG_HISTORY_SIZE / 10))
311 std::vector<char> vch(RECENT_DEBUG_HISTORY_SIZE, 0);
312 if (fseek(file, -((
long)vch.size()), SEEK_END)) {
313 LogPrintf(
"Failed to shrink debug log file: fseek(...) failed\n");
317 int nBytes = fread(vch.data(), 1, vch.size(), file);
323 fwrite(vch.data(), 1, nBytes, file);
327 else if (file !=
nullptr)
void EnableCategory(LogFlags flag)
BCLog::Logger & LogInstance()
std::chrono::seconds GetMockTime()
For testing.
FILE * fopen(const fs::path &p, const char *mode)
std::string RemovePrefix(const std::string &str, const std::string &prefix)
std::string FormatISO8601DateTime(int64_t nTime)
ISO 8601 formatting is preferred.
std::string ToString(const T &t)
Locale-independent version of std::to_string.
void LogPrintStr(const std::string &str, const std::string &logging_function, const std::string &source_file, const int source_line)
Send a string to the log output.
void DisableCategory(LogFlags flag)
bool WillLogCategory(LogFlags category) const
constexpr int64_t count_seconds(std::chrono::seconds t)
Helper to count the seconds of a duration.
void DisconnectTestLogger()
Only for testing.
bool StartLogging()
Start logging (and flush all buffered messages)
bool GetLogCategory(BCLog::LogFlags &flag, const std::string &str)
Return true if str parses as a log category and set the flag.
int64_t GetTimeMicros()
Returns the system time (not mockable)
const std::string & ThreadGetInternalName()
Get the thread's internal (in-memory) name; used e.g.
static int FileWriteStr(const std::string &str, FILE *fp)
const CLogCategoryDesc LogCategories[]
std::vector< LogCategory > LogCategoriesList() const
Returns a vector of the log categories.
static const bool DEFAULT_LOGIPS
std::string LogEscapeMessage(const std::string &str)
Belts and suspenders: make sure outgoing log messages don't contain potentially suspicious characters...
const char *const DEFAULT_DEBUGLOGFILE
std::string LogTimestampStr(const std::string &str)
bool DefaultShrinkDebugFile() const