3
0
mirror of https://github.com/hyprwm/Hyprland.git synced 2026-03-01 21:04:50 +00:00

debug: move to hyprutils' logger (#12673)

This commit is contained in:
Vaxry
2025-12-18 17:23:24 +00:00
committed by GitHub
parent f88deb928a
commit 6175ecd4c4
147 changed files with 1696 additions and 1709 deletions

View File

@ -49,7 +49,7 @@ bool CFramebuffer::alloc(int w, int h, uint32_t drmFormat) {
auto status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
RASSERT((status == GL_FRAMEBUFFER_COMPLETE), "Framebuffer incomplete, couldn't create! (FB status: {}, GL Error: 0x{:x})", status, sc<int>(glGetError()));
Debug::log(LOG, "Framebuffer created, status {}", status);
Log::logger->log(Log::DEBUG, "Framebuffer created, status {}", status);
}
glBindTexture(GL_TEXTURE_2D, 0);