Kaydet (Commit) 0ed936cc authored tarafından Noel Grandin's avatar Noel Grandin

pretty the scheduler debug a little

Change-Id: Ia5fe9869b5730a81d4343c4fe0a6cf7ca942cca6
üst 421d5e0c
...@@ -238,15 +238,15 @@ sal_uInt64 Scheduler::CalculateMinimumTimeout( bool &bHasActiveIdles ) ...@@ -238,15 +238,15 @@ sal_uInt64 Scheduler::CalculateMinimumTimeout( bool &bHasActiveIdles )
sal_uInt64 nOldMinPeriod = nMinPeriod; sal_uInt64 nOldMinPeriod = nMinPeriod;
nMinPeriod = pSchedulerData->mpScheduler->UpdateMinPeriod( nMinPeriod = pSchedulerData->mpScheduler->UpdateMinPeriod(
nOldMinPeriod, nTime ); nOldMinPeriod, nTime );
SAL_INFO("vcl.schedule", "Have active timer " << SAL_INFO("vcl.schedule", "Have active timer '" <<
pSchedulerData->GetDebugName() << pSchedulerData->GetDebugName() <<
"update min period from " << nOldMinPeriod << "' update min period from " << nOldMinPeriod <<
" to " << nMinPeriod); " to " << nMinPeriod);
} }
else else
{ {
SAL_INFO("vcl.schedule", "Have active idle " << SAL_INFO("vcl.schedule", "Have active idle '" <<
pSchedulerData->GetDebugName()); pSchedulerData->GetDebugName() << "'");
bHasActiveIdles = true; bHasActiveIdles = true;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment