Lower severity of "Got invalid timestamp" message
BUG: 459405
This commit is contained in:
parent
d6234d0411
commit
d32aebb747
1 changed files with 4 additions and 4 deletions
|
@ -128,7 +128,7 @@ void RenderLoopPrivate::notifyFrameCompleted(std::chrono::nanoseconds timestamp)
|
||||||
if (lastPresentationTimestamp <= timestamp) {
|
if (lastPresentationTimestamp <= timestamp) {
|
||||||
lastPresentationTimestamp = timestamp;
|
lastPresentationTimestamp = timestamp;
|
||||||
} else {
|
} else {
|
||||||
qCWarning(KWIN_CORE,
|
qCDebug(KWIN_CORE,
|
||||||
"Got invalid presentation timestamp: %lld (current %lld)",
|
"Got invalid presentation timestamp: %lld (current %lld)",
|
||||||
static_cast<long long>(timestamp.count()),
|
static_cast<long long>(timestamp.count()),
|
||||||
static_cast<long long>(lastPresentationTimestamp.count()));
|
static_cast<long long>(lastPresentationTimestamp.count()));
|
||||||
|
|
Loading…
Reference in a new issue