From f52dc96eea826bf4f3f1962c4c8cc4f1afa7d2e1 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Sun, 4 Jan 2026 14:40:07 +0000 Subject: [PATCH] feat: Replace logging calls in BulletPhysicsService with ILogger interface methods --- src/services/impl/bullet_physics_service.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/services/impl/bullet_physics_service.cpp b/src/services/impl/bullet_physics_service.cpp index 7145674..f3cf313 100644 --- a/src/services/impl/bullet_physics_service.cpp +++ b/src/services/impl/bullet_physics_service.cpp @@ -66,15 +66,15 @@ bool BulletPhysicsService::AddSphereRigidBody(const std::string& name, } bool BulletPhysicsService::RemoveRigidBody(const std::string& name) { - logging::TraceGuard trace; + logger_->TraceFunction(__func__); // PhysicsBridge doesn't support removing bodies in current implementation - logging::Logger::GetInstance().Warn("RemoveRigidBody not supported by PhysicsBridge"); + logger_->Warn("RemoveRigidBody not supported by PhysicsBridge"); return false; } void BulletPhysicsService::StepSimulation(float deltaTime, int maxSubSteps) { - logging::TraceGuard trace; + logger_->TraceFunction(__func__); if (!physicsBridge_) { throw std::runtime_error("Physics service not initialized");