logging: move spammy logs to trace

This commit is contained in:
Vaxry 2024-02-19 00:22:55 +00:00
parent e957c74814
commit 80d6dff563
3 changed files with 4 additions and 2 deletions

View file

@ -124,7 +124,7 @@ static const wl_callback_listener callbackListener = {
};
void CSessionLockSurface::render() {
Debug::log(LOG, "render lock");
Debug::log(TRACE, "render lock");
const auto FEEDBACK = g_pRenderer->renderLock(*this);
frameCallback = wl_surface_frame(surface);

View file

@ -328,6 +328,8 @@ void CHyprlock::unlockSession() {
m_bTerminate = true;
wl_display_roundtrip(m_sWaylandState.display);
exit(0);
}
void CHyprlock::onLockLocked() {

View file

@ -155,7 +155,7 @@ CRenderer::SRenderFeedback CRenderer::renderLock(const CSessionLockSurface& surf
frames++;
Debug::log(LOG, "frame {}", frames);
Debug::log(TRACE, "frame {}", frames);
feedback.needsFrame = feedback.needsFrame || bga < 1.0;
return feedback;