summaryrefslogtreecommitdiffstats
path: root/src/build_log.h
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2014-12-18 19:04:14 (GMT)
committerNico Weber <thakis@chromium.org>2014-12-18 19:04:14 (GMT)
commit2d4a637c3010e1c8726967c9072cf73619fcd47d (patch)
tree2421e938dd5acc3c68b6b68ae086dcbc4a3d39f4 /src/build_log.h
parent191f26d1497a568fcf2fce547031ce7ac93d2455 (diff)
downloadNinja-2d4a637c3010e1c8726967c9072cf73619fcd47d.zip
Ninja-2d4a637c3010e1c8726967c9072cf73619fcd47d.tar.gz
Ninja-2d4a637c3010e1c8726967c9072cf73619fcd47d.tar.bz2
Remove 'Recompacting...' messages.
Recompacting the build log used to be slow, so it made sense to print this message. We then made recompaction much faster, but didn't remove this message back then. The deps log only has it because the build log had it. Since both steps are effectively instant in practice, remove these log messages.
Diffstat (limited to 'src/build_log.h')
-rw-r--r--src/build_log.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/build_log.h b/src/build_log.h
index db0cfe0..fe81a85 100644
--- a/src/build_log.h
+++ b/src/build_log.h
@@ -80,7 +80,6 @@ struct BuildLog {
/// Rewrite the known log entries, throwing away old data.
bool Recompact(const string& path, const BuildLogUser& user, string* err);
- void set_quiet(bool quiet) { quiet_ = quiet; }
typedef ExternalStringHashMap<LogEntry*>::Type Entries;
const Entries& entries() const { return entries_; }
@@ -89,7 +88,6 @@ struct BuildLog {
Entries entries_;
FILE* log_file_;
bool needs_recompaction_;
- bool quiet_;
};
#endif // NINJA_BUILD_LOG_H_