mirror of
https://github.com/KjellKod/g3log.git
synced 2025-02-28 18:35:39 +01:00
Fix pretty function magic constant overwriting (#424)
* Fix bug with __PRETTY_FUNCTION__ being always overwritten. * Fix unit test to reflect new pretty function.
This commit is contained in:
parent
c51128f051
commit
9bb36eb7e5
@ -30,8 +30,12 @@
|
||||
#include <functional>
|
||||
|
||||
|
||||
#if !(defined(__PRETTY_FUNCTION__))
|
||||
#define __PRETTY_FUNCTION__ __FUNCTION__
|
||||
#if defined(__GNUC__) // GCC extension compatible
|
||||
#define G3LOG_PRETTY_FUNCTION __PRETTY_FUNCTION__
|
||||
#elif defined(_MSC_VER) // Microsoft
|
||||
#define G3LOG_PRETTY_FUNCTION __FUNCSIG__
|
||||
#else // Fallback to c99 / c++11
|
||||
#define G3LOG_PRETTY_FUNCTION __func__
|
||||
#endif
|
||||
|
||||
// thread_local doesn't exist before VS2013
|
||||
@ -138,10 +142,10 @@ namespace g3 {
|
||||
} // internal
|
||||
} // g3
|
||||
|
||||
#define INTERNAL_LOG_MESSAGE(level) LogCapture(__FILE__, __LINE__, static_cast<const char*>(__PRETTY_FUNCTION__), level)
|
||||
#define INTERNAL_LOG_MESSAGE(level) LogCapture(__FILE__, __LINE__, static_cast<const char*>(G3LOG_PRETTY_FUNCTION), level)
|
||||
|
||||
#define INTERNAL_CONTRACT_MESSAGE(boolean_expression) \
|
||||
LogCapture(__FILE__, __LINE__, __PRETTY_FUNCTION__, g3::internal::CONTRACT, boolean_expression)
|
||||
LogCapture(__FILE__, __LINE__, G3LOG_PRETTY_FUNCTION, g3::internal::CONTRACT, boolean_expression)
|
||||
|
||||
|
||||
// LOG(level) is the API for the stream log
|
||||
|
@ -640,7 +640,7 @@ TEST(CustomLogLevels, AddANonFatal) {
|
||||
logger.reset();
|
||||
std::string file_content = readFileToText(logger.logFile());
|
||||
std::string expected;
|
||||
expected += "MY_INFO_LEVEL [test_io.cpp->" + std::string(__FUNCTION__) + ":" + std::to_string(line);
|
||||
expected += "MY_INFO_LEVEL [test_io.cpp->" + std::string(G3LOG_PRETTY_FUNCTION) + ":" + std::to_string(line);
|
||||
EXPECT_TRUE(verifyContent(file_content, expected)) << file_content
|
||||
<< "\n\nExpected: \n" << expected;
|
||||
}
|
||||
@ -663,7 +663,7 @@ TEST(CustomLogLevels, AddFatal) {
|
||||
|
||||
std::string file_content = readFileToText(logger.logFile());
|
||||
std::string expected;
|
||||
expected += "DEADLY [test_io.cpp->" + std::string(__FUNCTION__) + ":" + std::to_string(line);
|
||||
expected += "DEADLY [test_io.cpp->" + std::string(G3LOG_PRETTY_FUNCTION) + ":" + std::to_string(line);
|
||||
EXPECT_TRUE(verifyContent(file_content, expected)) << file_content
|
||||
<< "\n\nExpected: \n" << expected;
|
||||
g_fatal_counter.store(0); // restore
|
||||
@ -734,7 +734,7 @@ TEST(CustomLogLevels, AddANonFatal__DidtAddItToEnabledValue) {
|
||||
logger.reset();
|
||||
std::string file_content = readFileToText(logger.logFile());
|
||||
std::string expected;
|
||||
expected += "MY_INFO_LEVEL [test_io.cpp->" + std::string(__FUNCTION__) + ":" + std::to_string(line);
|
||||
expected += "MY_INFO_LEVEL [test_io.cpp->" + std::string(G3LOG_PRETTY_FUNCTION) + ":" + std::to_string(line);
|
||||
EXPECT_TRUE(verifyContent(file_content, expected)) << file_content
|
||||
<< "\n\nExpected: \n" << expected;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user