This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/deps/logger/log_internal.h

19 lines
297 B
C
Raw Normal View History

#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
#include "stellar/log.h"
2024-08-28 19:00:32 +08:00
extern __thread struct logger *__thread_local_logger;
struct logger *log_new(const char *config_file);
void log_free(struct logger *logger);
void log_reload_level(struct logger *logger);
#ifdef __cplusplus
}
#endif