Adds writer test case for RCU
[folly.git] / folly / experimental / logging /
2018-01-14 Yedidya FeldblumFix copyright lines v2018.01.15.00
2018-01-10 Adam Simpkinslogging: fix build error when using gcc with -Wmissing...
2018-01-10 Adam Simpkinslogging: include file name suffixes in XLOG() category...
2018-01-10 Adam Simpkinslogging: add numbered INFO* log level values
2018-01-10 Adam Simpkinslogging: rename the `DEBUG` log level to `DBG`
2018-01-08 Eric Nieblergive all folly exception types default visibility
2017-12-14 Chen ShenFix xlog docs
2017-12-13 Adam Simpkinslogging: minor clean up in Logger.h
2017-12-13 Adam Simpkinslogging: add more documentation
2017-12-08 Adam Simpkinslogging: use raw string literals in config tests
2017-12-07 Adam Simpkinslogging: allow partial updates to log handler settings
2017-12-07 Adam Simpkinslogging: split FileHandlerFactory into two classes
2017-12-07 Adam Simpkinslogging: add a StandardLogHandlerFactory helper class
2017-12-02 Adam Simpkinslogging: fix compilation error on older C++ compilers
2017-12-02 Adam Simpkinslogging: update initialization code to use the new...
2017-11-30 Adam Simpkinslogging: add a LogConfig::update() method
2017-11-30 Adam Simpkinslogging: add an assert for the FLAG_INHERIT bit
2017-11-30 Adam Simpkinslogging: remove comment about LogLevel::ERROR
2017-11-30 Adam Simpkinslogging: add LoggerDB::updateConfig() and resetConfig()
2017-11-30 Adam Simpkinslogging: add a LoggerDB::getConfig() method
2017-11-30 Adam Simpkinslogging: don't clamp the log level to DFATAL in debug...
2017-11-30 Adam Simpkinslogging: add a LogHandler::getConfig() method
2017-11-30 Adam Simpkinslogging: add a LogHandler registry to LoggerDB
2017-11-29 Adam Simpkinslogging: add a FileHandlerFactory class
2017-11-28 Adam Simpkinslogging: convert assert() checks to FOLLY_SAFE_DCHECK()
2017-11-28 Adam Simpkinslogging: fix unused variable warning in non-debug builds
2017-11-21 Adam Simpkinslogging: add a LogConfig class and parsing code
2017-11-07 Adam Simpkinslogging: set the thread name for the AsyncFileWriter...
2017-10-24 Christopher DykesConsistently have the namespace closing comment
2017-10-21 James Sedgwickmove MemoryMapping, Shell, ThreadId, ThreadName, and...
2017-10-16 Chad Austinfix typo in invalid log level error message
2017-09-19 Christopher DykesEnable -Wunused-variables
2017-07-31 Yedidya FeldblumConsistency in namespace-closing comments v2017.07.31.00
2017-07-25 nicksbymanadd import to main in logging example
2017-07-17 Christopher DykesEnable a couple of AsyncFileWriter tests on Windows
2017-07-05 Adam Simpkinslogging: fix compiler compatibility for one more conste...
2017-06-30 Adam SimpkinsDon't try to access XlogFileScopeInfo->category if...
2017-06-29 Adam Simpkinslogging: support building with gcc-4.9
2017-06-23 Christopher DykesFix AsyncFileWriterTest due to long being 32-bit on...
2017-06-23 Christopher DykesFix GlogFormatterTest on Windows
2017-06-23 Christopher DykesStop MSVC from complaining about digraphs not being...
2017-06-23 Christopher DykesSwitch the logging tests from .native() to .string()
2017-06-22 Adam Simpkinslogging: fix issues detecting XLOG(FATAL) statements...
2017-06-22 Adam Simpkinslogging: improve the AsyncFileWriter flush test()
2017-06-22 Adam Simpkinslogging: fully convert the ERROR level to ERR
2017-06-22 Adam Simpkinslogging: add more tests for fatal log messages
2017-06-21 Adam Simpkinslogging: shorten output of logLevelToString()
2017-06-21 Adam Simpkinslogging: reduce the amount of code emitted for log...
2017-06-21 Adam Simpkinslogging: add printf-style logging macros
2017-06-21 Adam Simpkinslogging: make XLOG_GET_CATEGORY() safe for all callers
2017-06-21 Adam Simpkinslogging: improve the AsyncFileWriterTest discard test
2017-06-20 Adam Simpkinslogging: implement FATAL and DFATAL log levels
2017-06-20 Adam Simpkinslogging: add LoggerDB::flushAllHandlers()
2017-06-20 Adam Simpkinslogging: add a LogHandler::flush() call
2017-06-20 Adam Simpkinslogging: add a NEVER_DISCARD flag to LogWriter
2017-06-20 Adam Simpkinslogging: add a small example program
2017-06-16 Christopher DykesRemove the relative comparison operators on LogLevel
2017-06-16 Christopher DykesDon't declare caught exceptions when not actually used
2017-06-16 Christopher DykesDon't try to use _CrtDbgReport in the logging framework
2017-06-16 Christopher DykesEnsure LogWriter::writeMessage(std::string&&) is in...
2017-06-16 Christopher DykesInclude the time portability header in GlogStyleFormatt...
2017-06-16 Christopher DykesExplicitly initialize the base class of LogStream
2017-06-15 Adam Simpkinslogging: add initialization convenience functions
2017-06-15 Adam Simpkinslogging: add GlogStyleFormatter
2017-06-15 Adam Simpkinslogging: add AsyncFileWriter
2017-06-15 Adam Simpkinslogging: add ImmediateFileWriter
2017-06-15 Adam Simpkinslogging: add a LoggerDB::internalWarning() function
2017-06-15 Adam Simpkinslogging: add new RateLimiter helper class
2017-06-15 Adam Simpkinslogging: add LogFormatter and LogWriter interfaces
2017-06-15 Adam Simpkinslogging: add XLOG() and XLOGF() logging macros
2017-06-14 Jonathan KronFixing opt-asan/ubsan fail for folly contbuild
2017-06-13 Adam Simpkinslogging: if folly::format() fails, also log the arguments
2017-06-13 Adam Simpkinslogging: add support for streaming operators
2017-06-13 Adam Simpkinsadd a new logging library