mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
Changed macro name to SPDLOG_EMIT_SOURCE_LOCATION
This commit is contained in:
parent
ce6bccb194
commit
536da46a2c
@ -27,7 +27,10 @@ void custom_flags_example();
|
||||
void file_events_example();
|
||||
void replace_default_logger_example();
|
||||
|
||||
#define SPDLOG_USE_SOURCE_LOCATION
|
||||
// Uncomment to enable source location support.
|
||||
// This will add filename/line/column info to the log (and in to the resulting binary so take care).
|
||||
// #define SPDLOG_EMIT_SOURCE_LOCATION
|
||||
|
||||
#include "spdlog/spdlog.h"
|
||||
#include "spdlog/cfg/env.h" // support for loading levels from the environment variable
|
||||
|
||||
|
@ -129,7 +129,7 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef SPDLOG_USE_SOURCE_LOCATION
|
||||
#ifdef SPDLOG_EMIT_SOURCE_LOCATION
|
||||
template<typename... Args>
|
||||
void trace(loc_with_fmt fmt, Args &&...args)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user