summaryrefslogtreecommitdiff
path: root/slideshow/source/engine/eventqueue.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-03-13 10:50:28 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-03-13 10:53:28 +0100
commitee11e221d2108212619e1bbe7f029e7d9afdba32 (patch)
tree65e77bfcd7fc7a4ca7e1c111cc8707615bc0d613 /slideshow/source/engine/eventqueue.cxx
parente37388c7de15242b7af0bf9fdc48c6d194d8cd94 (diff)
tdf#43157: Fix format string violations in OSL_TRACE etc.
...in preparation of enabling the __attribute__((format(...))) in sal_detail_logFormat (include/sal/detail/log.h) Change-Id: I8a859199fa11ca0f9f4f4b4b23a8ebddec955a86
Diffstat (limited to 'slideshow/source/engine/eventqueue.cxx')
-rw-r--r--slideshow/source/engine/eventqueue.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/slideshow/source/engine/eventqueue.cxx b/slideshow/source/engine/eventqueue.cxx
index 59efda2c9001..6e5d2b49a9ea 100644
--- a/slideshow/source/engine/eventqueue.cxx
+++ b/slideshow/source/engine/eventqueue.cxx
@@ -265,11 +265,11 @@ namespace slideshow
}
else
{
-#if OSL_DEBUG_LEVEL > 0
- VERBOSE_TRACE( "Ignoring discharged event: unknown (0x%X), timeout was: %f",
- event.pEvent.get(),
- event.pEvent->getActivationTime(0.0) );
-#endif
+ SAL_INFO(
+ "slideshow.eventqueue",
+ "Ignoring discharged event: unknown ("
+ << event.pEvent.get() << "), timeout was: "
+ << event.pEvent->getActivationTime(0.0));
}
}
}