summaryrefslogtreecommitdiff
path: root/src/mongo/util/progress_meter.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-66203 move MONGO_LOGV2_DEFAULT_COMPONENT defs below includesBilly Donahue2022-05-061-1/+3
|
* SERVER-60646 remove ThreadSafeStringBilly Donahue2021-10-141-4/+4
|
* SERVER-51061 Rename WHITELIST macros to ALLOWSara Golemon2021-05-041-1/+0
|
* SERVER-46107 Manual conversion of log statementsHenrik Edin2020-02-131-8/+8
|
* SERVER-45869 automatically converted structured loggingGabriel Russell2020-02-131-1/+2
|
* SERVER-41772 Apply clang-format 7.0.1 to the codebaseclang-format-7.0.12019-07-271-1/+1
|
* SERVER-41071 Replace NULL and 0 with nullptrA. Jesse Jiryu Davis2019-06-141-2/+2
|
* SERVER-39863 remove std using namespace directivesBilly Donahue2019-02-281-6/+4
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-3/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37265 Change curOp and ProgressMeter for hybrid buildsLouis Williams2019-01-021-1/+5
|
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+17
|
* SERVER-24991 Redact streaming log messagesDan Pasette2016-07-201-1/+1
| | | | | | | | | | Covered files in src/mongo.. /executor /logger /platform /util /scripting /shell
* SERVER-20609 optimize OpDebug and CurOp constructionAdam Midvidy2015-10-301-1/+1
| | | | | | - replace assignment with NSDMI - remove the giant ThreadSafeString from CurOp - remove unnecessary reset() call to opDebug in assembleResponse
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-53/+51
|
* SERVER-13256 Remove pch.hAndrew Morrow2015-01-151-2/+0
|
* SERVER-13256 Prohibit new uses of pch.hAndrew Morrow2015-01-051-1/+4
|
* SERVER-15592 set default log component for all cppMatt Kangas2014-10-141-0/+2
|
* SERVER-13242 replace tabs in Progress Meter log messages with spacesJustin Case2014-10-011-4/+4
| | | | | | Closes #799 Signed-off-by: Benety Goh <benety@mongodb.com>
* SERVER-13264 Move Apache-licensed files to AGPLIan Whalen2014-05-161-9/+21
| | | | Also update generators.
* SERVER-9907 Allow to skip initial count() in mapreduceRandolph Tan2013-07-301-1/+6
| | | | Added option to hide the total in the progress meter.
* Clean up #includes to conform with coding standardDan Pasette2013-07-241-3/+5
|
* SERVER-10084 New logging implementation.Andy Schwerin2013-07-091-4/+2
| | | | | | | | | | | | | | | | This change-set: * Introduces a new top-level directory, mongo/logger, containing most of the implementation of logging functionality formerly found in log.cpp/log.h. * Cleans up existing, unusual uses of the logging system that were not trivially compatible with the new implementation. * Replaces Logstream/Nulstream with a LogstreamBuilder object, whose destructor writes log messages. This new LogstreamBuilder is reentrant, unlike the old logging code, which was thread-safe but not reentrant. Additionally, std::endl is no longer required to terminate a log line. When a LogstreamBuilder goes out of scope, the log message gets committed. * Separates the log system into several components: a global LogManager, several LogDomains, various kinds of Appenders (e.g., SyslogAppender) and Encoders (for formatting messages). * Allows unit tests to capture and examine log output. This patch does _not_ introduce support for hierarchical log domains, or for enabling and disabling specific log domains when the server is running in a multi-threaded mode. This is future work.
* SERVER-4858 give ProgressMeter better printsMatt Dannenberg2012-12-181-2/+3
| | | | | | | | | | | ProgressMeters now have a _name attribute which is printed as part of each output to give the output more context Conflicts: src/mongo/db/commands/mr.cpp src/mongo/db/index_update.cpp src/mongo/tools/dump.cpp Updated by Mathias on 2012/12/17 to fix conficts and new PMs in indexupdatetests.cpp
* Fix Visual Studio build -- progress_meter.cppTad Marshall2012-03-191-1/+1
| | | | | Add progress_meter.cpp to projects that need it, make pch.h the first include so we can use procompiled header in VS.
* move ProgressMeter into its own file and make output use log() instead of ↵Eliot Horowitz2012-03-191-0/+82
cout SERVER-1693