diff options
Diffstat (limited to 'chrome/browser/sync/syncable/syncable.cc')
-rw-r--r-- | chrome/browser/sync/syncable/syncable.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/syncable/syncable.cc b/chrome/browser/sync/syncable/syncable.cc index 0722c2d..b9342b8 100644 --- a/chrome/browser/sync/syncable/syncable.cc +++ b/chrome/browser/sync/syncable/syncable.cc @@ -1139,7 +1139,7 @@ void BaseTransaction::Lock() { time_acquired_ = base::TimeTicks::Now(); const base::TimeDelta elapsed = time_acquired_ - start_time; - VLOG_LOC(from_here_, 1) + VLOG_LOC(from_here_, 2) << name_ << " transaction waited " << elapsed.InSecondsF() << " seconds."; } @@ -1147,7 +1147,7 @@ void BaseTransaction::Lock() { void BaseTransaction::Unlock() { dirkernel_->transaction_mutex.Release(); const base::TimeDelta elapsed = base::TimeTicks::Now() - time_acquired_; - VLOG_LOC(from_here_, 1) + VLOG_LOC(from_here_, 2) << name_ << " transaction completed in " << elapsed.InSecondsF() << " seconds."; } |