feat(tvix): Convert some DLOGs to VLOGs

It seems like the amount of logging is causing things to move a little
slower - even if that's not really the case, it gets in the way of
debugging things.

Refs: b/76
Change-Id: I9ea99a3b16e3307a0b0371bad22d03b0e2175af6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2134
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
Griffin Smith 2020-11-22 17:11:32 -05:00 committed by glittershark
parent 64ef09c475
commit 9945bd1746
6 changed files with 10 additions and 10 deletions

View file

@ -688,7 +688,7 @@ void EvalState::evalFile(const Path& path_, Value& v) {
return;
}
DLOG(INFO) << "evaluating file '" << path2 << "'";
VLOG(2) << "evaluating file '" << path2 << "'";
Expr* e = nullptr;
auto j = fileParseCache.find(path2);
@ -1541,7 +1541,7 @@ std::string EvalState::copyPathToStore(PathSet& context, const Path& path) {
: store->addToStore(baseNameOf(path), checkSourcePath(path), true,
htSHA256, defaultPathFilter, repair);
srcToStore[path] = dstPath;
DLOG(INFO) << "copied source '" << path << "' -> '" << dstPath << "'";
VLOG(2) << "copied source '" << path << "' -> '" << dstPath << "'";
}
context.insert(dstPath);