summaryrefslogtreecommitdiff
path: root/src/mongo/logger
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-2712-42/+38
|
* SERVER-41809 Collapse unit tests on a per-directory basisAndrew Morrow2019-06-201-25/+24
|
* SERVER-41071 Replace more NULLs with nullptrA. Jesse Jiryu Davis2019-06-172-6/+6
|
* SERVER-41071 Replace NULL and 0 with nullptrA. Jesse Jiryu Davis2019-06-142-8/+8
|
* SERVER-39339 Remove `stdx/memory.h`ADAM David Alan Martin2019-06-101-2/+1
|
* SERVER-40813 remove all -inl.h filesBilly Donahue2019-04-302-92/+54
|
* SERVER-40476 merge contents of utils/stringutils into utils/str.Billy Donahue2019-04-111-1/+0
|
* SERVER-40476 remove mongoutils::strBilly Donahue2019-04-095-28/+22
| | | | | | Rename utils/mongoutils/str.h => utils/str.h Rename namespace mongoutils::str => str Rename mongo::strcasecmp => str::caseInsensitiveCompare.
* SERVER-40357 expand all calls to MONGO_DISALLOW_COPYINGBilly Donahue2019-03-2811-23/+28
| | | | | | | | | | | produced by: hits="$(git grep -n MONGO_DISALLOW_COPYING | cut -d: -f1 )" for f in "$hits"; do sed -i.orig ' s/^\( *\)MONGO_DISALLOW_COPYING(\(.*\));/\1\2(const \2\&) = delete;\n\1\2\& operator=(const \2\&) = delete;/; ' $f done
* SERVER-37743 Debug logs should include the debug log levelAndrew Morrow2019-03-156-54/+76
|
* SERVER-37412 Added LogSeverityLimiter for timed loggingBen Caimano2019-02-201-0/+111
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-1346-50/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-34260 Move bookkeeping functions into ConnectionInterfaceJonathan Reams2019-01-232-0/+6
|
* SERVER-37880 Merge the barrier functionality to be part of the unittests libraryKaloian Manassiev2019-01-101-2/+1
|
* SERVER-36644 remove AtomicWord typedefsBilly Donahue2019-01-073-4/+4
|
* SERVER-38781 remove vestigial html codeMathias Stearn2018-12-272-60/+0
|
* SERVER-37740 SERVER-37741 remove deprecated LabeledLevelKevin Pulo2018-11-214-123/+1
|
* SERVER-37909 Fix GCC-8 in some tests.ADAM David Alan Martin2018-11-081-4/+5
| | | | | | | GCC-8 doesn't treat `_Pragma(...)` ignore directives in macros the way that Clang does. Instead of this technique, we'll make the requirement on `ASSERT_THROWS`' parameter an expression, not a statement.
* SERVER-37678 Extend cpplint's CheckForCopyright() to check for SSPL.Max Hirschhorn2018-11-052-2/+52
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-2247-635/+772
|
* SERVER-20603 Add component information to syslog loggingHenrik Edin2018-10-101-0/+4
|
* SERVER-33231 Create initial sync log componentVesselina Ratcheva2018-10-082-0/+6
|
* SERVER-36532 Increase RamLog line size to 1024Anthony Roy2018-08-081-1/+1
|
* SERVER-36461 Add 'transaction' identifier to slow transaction log outputNathan Louie2018-08-072-0/+5
|
* SERVER-32906 Improve logging around electionsTess Avitabile2018-07-272-0/+6
|
* SERVER-30841 Lower the amount of metadata refresh loggingCheahuychou Mao2018-07-252-0/+6
|
* SERVER-36209 Log to Visual Studio Debug Output in debug builds if debugger ↵Henrik Edin2018-07-231-2/+11
| | | | is attached.
* SERVER-35128: Add a boost::optional overload to Logstream builder's operator<<Daniel Gottlieb2018-05-241-0/+11
|
* SERVER-33909 More detailed error reporting from CAPIADAM David Alan Martin2018-05-031-2/+3
| | | | | | | | | | | The `libmongodbcapi.h` file now contains detailed documentation of all preconditions, postconditions, and behaviors. All operations now take a `libmongodbcapi_status *` argument which will be populated with the failure results of an operation. The internals of how the `libmongodbcapi_` functions are implemented have been rewritten to catch and report nearly all failures, as well as to use more native C++ idioms such as exceptions and RAII.
* SERVER-33906 Callback registration for logs in embedded C API.Henrik Edin2018-04-103-4/+50
|
* SERVER-34307 replace invariant(false) with MONGO_UNREACHABLEBenety Goh2018-04-041-3/+3
|
* SERVER-34154: Add Recovery logger under storage for checkpoint and catalog ↵Daniel Gottlieb2018-03-282-0/+6
| | | | | | debugging. Have the rollback fuzzer, jepsen and replica set kill secondaries use it.
* SERVER-33758 Make mongo::logger classes use more unique_ptrsBen Caimano2018-03-218-44/+43
| | | | | Appenders and LogDomains now use unique ptrs internally and on signature.
* SERVER-33758 Remove logUserIdsBen Caimano2018-03-164-113/+71
| | | | Removed unused `--logUserIds` flag, consolidated logger encoding
* SERVER-33275 Remove `platform/unordered_`* headersADAM David Alan Martin2018-02-142-4/+4
| | | | | | These headers date from before C++11 support and the `::mongo::stdx::` namespace. They can be removed and uses of the names therein can be changed to `::mongo::stdx::unordered_`* forms.
* SERVER-31622 Fix bad throwsMathias Stearn2017-11-021-4/+7
|
* SERVER-30580 StringData-ify error handling functionsMathias Stearn2017-08-162-4/+16
|
* SERVER-30580 Make argument order consistently code then messageMathias Stearn2017-08-161-2/+2
|
* SERVER-30580 Eliminate DBException::getCode() in favor of code()Mathias Stearn2017-08-163-2/+8
|
* SERVER-30580 No more status locationsMathias Stearn2017-08-162-8/+0
|
* SERVER-30501 Create rollback logging componentJudah Schvimer2017-08-072-0/+6
|
* SERVER-26538 SERVER-26539 Detach from boost::threadAndrew Morrow2017-08-021-13/+7
| | | | | Also, use thread_local everywhere for our thread specific data needs and remove the legacy support.
* SERVER-27244 Status usage compile-time facilities.ADAM David Alan Martin2017-06-182-4/+7
| | | | | | | | | | | | | | | | | There are numerous places in the codebase where `mongo::Status` or `mongo::StatusWith< T >` objects are returned and never checked. Many of these are innocuous, but many of them are potentially severe bugs. This change introduces facilities to permit compile-time warning of unchecked `Status` and `StatusWith` usage on clang compilers. It introduces an `ignore` function which is useful to state that a specific "ignored status" case was intentional. It not presently an error, in clang builds, to forget to check a `Status` -- this will come in a later commit. This also introduces a `transitional_ignore` function, which allows for easy continual auditing of the codebase for current "whitelisted" unchecked-status instances. All present "ignored status" cases have been marked `transitional_ignore`.
* SERVER-29152 Do not cache logging ostream in threadlocal when in other ↵samantharitter2017-05-302-5/+16
| | | | thread-specific contexts
* SERVER-29012 Enable ASAN strict init order checking and fix revealed issuesAndrew Morrow2017-05-013-29/+17
|
* SERVER-27727 Make threadName a native thread_local so debuggers can get to itMathias Stearn2017-03-242-12/+9
|
* SERVER-28380 Clear ramlog before looking for stopReplProducer failpoint log ↵Spencer T Brody2017-03-202-2/+16
| | | | message
* SERVER-27908 Log every heartbeat during testingWilliam Schultz2017-03-092-0/+6
|
* SERVER-27897 Remove uses of temporary RAII objectsGeert Bosch2017-02-161-1/+1
|
* SERVER-27497 Scope SCons Environment changes narrowlyAndrew Morrow2017-01-031-0/+2
|