debug: move to hyprutils' logger (#12673)
This commit is contained in:
parent
f88deb928a
commit
6175ecd4c4
147 changed files with 1696 additions and 1709 deletions
|
|
@ -48,7 +48,7 @@ CXDGPopupResource::CXDGPopupResource(SP<CXdgPopup> resource_, SP<CXDGSurfaceReso
|
|||
});
|
||||
|
||||
m_resource->setReposition([this](CXdgPopup* r, wl_resource* positionerRes, uint32_t token) {
|
||||
LOGM(LOG, "Popup {:x} asks for reposition", (uintptr_t)this);
|
||||
LOGM(Log::DEBUG, "Popup {:x} asks for reposition", (uintptr_t)this);
|
||||
m_lastRepositionToken = token;
|
||||
auto pos = CXDGPositionerResource::fromResource(positionerRes);
|
||||
if (!pos)
|
||||
|
|
@ -58,7 +58,7 @@ CXDGPopupResource::CXDGPopupResource(SP<CXdgPopup> resource_, SP<CXDGSurfaceReso
|
|||
});
|
||||
|
||||
m_resource->setGrab([this](CXdgPopup* r, wl_resource* seat, uint32_t serial) {
|
||||
LOGM(LOG, "xdg_popup {:x} requests grab", (uintptr_t)this);
|
||||
LOGM(Log::DEBUG, "xdg_popup {:x} requests grab", (uintptr_t)this);
|
||||
PROTO::xdgShell->addOrStartGrab(m_self.lock());
|
||||
});
|
||||
|
||||
|
|
@ -76,7 +76,7 @@ void CXDGPopupResource::applyPositioning(const CBox& box, const Vector2D& t1coor
|
|||
|
||||
m_geometry = m_positionerRules.getPosition(constraint, accumulateParentOffset() + t1coord);
|
||||
|
||||
LOGM(LOG, "Popup {:x} gets unconstrained to {} {}", (uintptr_t)this, m_geometry.pos(), m_geometry.size());
|
||||
LOGM(Log::DEBUG, "Popup {:x} gets unconstrained to {} {}", (uintptr_t)this, m_geometry.pos(), m_geometry.size());
|
||||
|
||||
configure(m_geometry);
|
||||
|
||||
|
|
@ -122,7 +122,7 @@ void CXDGPopupResource::repositioned() {
|
|||
if LIKELY (!m_lastRepositionToken)
|
||||
return;
|
||||
|
||||
LOGM(LOG, "repositioned: sending reposition token {}", m_lastRepositionToken);
|
||||
LOGM(Log::DEBUG, "repositioned: sending reposition token {}", m_lastRepositionToken);
|
||||
|
||||
m_resource->sendRepositioned(m_lastRepositionToken);
|
||||
m_lastRepositionToken = 0;
|
||||
|
|
@ -257,7 +257,7 @@ CXDGToplevelResource::CXDGToplevelResource(SP<CXdgToplevel> resource_, SP<CXDGSu
|
|||
if (m_parent)
|
||||
m_parent->m_children.emplace_back(m_self);
|
||||
|
||||
LOGM(LOG, "Toplevel {:x} sets parent to {:x}{}", (uintptr_t)this, (uintptr_t)newp.get(), (oldParent ? std::format(" (was {:x})", (uintptr_t)oldParent.get()) : ""));
|
||||
LOGM(Log::DEBUG, "Toplevel {:x} sets parent to {:x}{}", (uintptr_t)this, (uintptr_t)newp.get(), (oldParent ? std::format(" (was {:x})", (uintptr_t)oldParent.get()) : ""));
|
||||
});
|
||||
}
|
||||
|
||||
|
|
@ -402,7 +402,7 @@ CXDGSurfaceResource::CXDGSurfaceResource(SP<CXdgSurface> resource_, SP<CXDGWMBas
|
|||
});
|
||||
|
||||
m_listeners.surfaceDestroy = m_surface->m_events.destroy.listen([this] {
|
||||
LOGM(WARN, "wl_surface destroyed before its xdg_surface role object");
|
||||
LOGM(Log::WARN, "wl_surface destroyed before its xdg_surface role object");
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
m_listeners.surfaceCommit.reset();
|
||||
|
||||
|
|
@ -458,7 +458,7 @@ CXDGSurfaceResource::CXDGSurfaceResource(SP<CXdgSurface> resource_, SP<CXDGWMBas
|
|||
m_toplevel = RESOURCE;
|
||||
m_toplevel->m_self = RESOURCE;
|
||||
|
||||
LOGM(LOG, "xdg_surface {:x} gets a toplevel {:x}", (uintptr_t)m_owner.get(), (uintptr_t)RESOURCE.get());
|
||||
LOGM(Log::DEBUG, "xdg_surface {:x} gets a toplevel {:x}", (uintptr_t)m_owner.get(), (uintptr_t)RESOURCE.get());
|
||||
|
||||
g_pCompositor->m_windows.emplace_back(Desktop::View::CWindow::create(m_self.lock()));
|
||||
|
||||
|
|
@ -484,7 +484,7 @@ CXDGSurfaceResource::CXDGSurfaceResource(SP<CXdgSurface> resource_, SP<CXDGWMBas
|
|||
m_popup = RESOURCE;
|
||||
RESOURCE->m_self = RESOURCE;
|
||||
|
||||
LOGM(LOG, "xdg_surface {:x} gets a popup {:x} owner {:x}", (uintptr_t)m_self.get(), (uintptr_t)RESOURCE.get(), (uintptr_t)parent.get());
|
||||
LOGM(Log::DEBUG, "xdg_surface {:x} gets a popup {:x} owner {:x}", (uintptr_t)m_self.get(), (uintptr_t)RESOURCE.get(), (uintptr_t)parent.get());
|
||||
|
||||
if (!parent)
|
||||
return;
|
||||
|
|
@ -502,7 +502,7 @@ CXDGSurfaceResource::CXDGSurfaceResource(SP<CXdgSurface> resource_, SP<CXDGWMBas
|
|||
});
|
||||
|
||||
m_resource->setSetWindowGeometry([this](CXdgSurface* r, int32_t x, int32_t y, int32_t w, int32_t h) {
|
||||
LOGM(LOG, "xdg_surface {:x} requests geometry {}x{} {}x{}", (uintptr_t)this, x, y, w, h);
|
||||
LOGM(Log::DEBUG, "xdg_surface {:x} requests geometry {}x{} {}x{}", (uintptr_t)this, x, y, w, h);
|
||||
m_pending.geometry = {x, y, w, h};
|
||||
});
|
||||
}
|
||||
|
|
@ -596,7 +596,7 @@ CXDGPositionerRules::CXDGPositionerRules(SP<CXDGPositionerResource> positioner)
|
|||
}
|
||||
|
||||
CBox CXDGPositionerRules::getPosition(CBox constraint, const Vector2D& parentCoord) {
|
||||
Debug::log(LOG, "GetPosition with constraint {} {} and parent {}", constraint.pos(), constraint.size(), parentCoord);
|
||||
Log::logger->log(Log::DEBUG, "GetPosition with constraint {} {} and parent {}", constraint.pos(), constraint.size(), parentCoord);
|
||||
|
||||
// padding
|
||||
constraint.expand(-4);
|
||||
|
|
@ -742,7 +742,7 @@ CXDGWMBase::CXDGWMBase(SP<CXdgWmBase> resource_) : m_resource(resource_) {
|
|||
|
||||
m_positioners.emplace_back(RESOURCE);
|
||||
|
||||
LOGM(LOG, "New xdg_positioner at {:x}", (uintptr_t)RESOURCE.get());
|
||||
LOGM(Log::DEBUG, "New xdg_positioner at {:x}", (uintptr_t)RESOURCE.get());
|
||||
});
|
||||
|
||||
m_resource->setGetXdgSurface([this](CXdgWmBase* r, uint32_t id, wl_resource* surf) {
|
||||
|
|
@ -773,7 +773,7 @@ CXDGWMBase::CXDGWMBase(SP<CXdgWmBase> resource_) : m_resource(resource_) {
|
|||
|
||||
m_surfaces.emplace_back(RESOURCE);
|
||||
|
||||
LOGM(LOG, "New xdg_surface at {:x}", (uintptr_t)RESOURCE.get());
|
||||
LOGM(Log::DEBUG, "New xdg_surface at {:x}", (uintptr_t)RESOURCE.get());
|
||||
});
|
||||
|
||||
m_resource->setPong([this](CXdgWmBase* r, uint32_t serial) {
|
||||
|
|
@ -817,7 +817,7 @@ void CXDGShellProtocol::bindManager(wl_client* client, void* data, uint32_t ver,
|
|||
|
||||
RESOURCE->m_self = RESOURCE;
|
||||
|
||||
LOGM(LOG, "New xdg_wm_base at {:x}", (uintptr_t)RESOURCE.get());
|
||||
LOGM(Log::DEBUG, "New xdg_wm_base at {:x}", (uintptr_t)RESOURCE.get());
|
||||
}
|
||||
|
||||
void CXDGShellProtocol::destroyResource(CXDGWMBase* resource) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue