summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-06 13:42:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-06 13:42:32 +0200
commit0ed936cc7400339f6c884f1ba435b4c90947e5ee (patch)
treef9203c0e3af4ff3baaf6c43c22492b72b3a3fe9c /vcl
parent421d5e0c61640ab56e67fc0ddbfe67de4332ce8e (diff)
pretty the scheduler debug a little
Change-Id: Ia5fe9869b5730a81d4343c4fe0a6cf7ca942cca6
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/scheduler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/source/app/scheduler.cxx b/vcl/source/app/scheduler.cxx
index 5cfb042fb00a..120df2c30fa7 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;
}
}