[Libreoffice-commits] core.git: vcl/source
Noel Grandin
noel.grandin at collabora.co.uk
Tue Dec 6 11:43:04 UTC 2016
vcl/source/app/scheduler.cxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 0ed936cc7400339f6c884f1ba435b4c90947e5ee
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date: Tue Dec 6 13:42:01 2016 +0200
pretty the scheduler debug a little
Change-Id: Ia5fe9869b5730a81d4343c4fe0a6cf7ca942cca6
diff --git a/vcl/source/app/scheduler.cxx b/vcl/source/app/scheduler.cxx
index 5cfb042..120df2c 100644
--- a/vcl/source/app/scheduler.cxx
+++ b/vcl/source/app/scheduler.cxx
@@ -238,15 +238,15 @@ sal_uInt64 Scheduler::CalculateMinimumTimeout( bool &bHasActiveIdles )
sal_uInt64 nOldMinPeriod = nMinPeriod;
nMinPeriod = pSchedulerData->mpScheduler->UpdateMinPeriod(
nOldMinPeriod, nTime );
- SAL_INFO("vcl.schedule", "Have active timer " <<
+ SAL_INFO("vcl.schedule", "Have active timer '" <<
pSchedulerData->GetDebugName() <<
- "update min period from " << nOldMinPeriod <<
+ "' update min period from " << nOldMinPeriod <<
" to " << nMinPeriod);
}
else
{
- SAL_INFO("vcl.schedule", "Have active idle " <<
- pSchedulerData->GetDebugName());
+ SAL_INFO("vcl.schedule", "Have active idle '" <<
+ pSchedulerData->GetDebugName() << "'");
bHasActiveIdles = true;
}
}
More information about the Libreoffice-commits
mailing list