Skip to content

Commit

Permalink
PhysicsRigidBody: more logging at the INFO level
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Dec 16, 2022
1 parent 01ee1fb commit 7d6222f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/jme3/bullet/objects/PhysicsRigidBody.java
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ public void rebuildRigidBody() {
}
snapshot = new RigidBodySnapshot(this);

logger2.log(Level.FINE, "Clearing {0}.", this);
logger2.log(Level.INFO, "Clearing {0}.", this);
clearIgnoreList();
unassignNativeObject();
}
Expand All @@ -603,7 +603,7 @@ public void rebuildRigidBody() {
setNativeId(objectId);
assert getInternalType(objectId) == PcoType.rigid :
getInternalType(objectId);
logger2.log(Level.FINE, "Created {0}.", this);
logger2.log(Level.INFO, "Created {0}.", this);

if (mass != massForStatic) {
setKinematic(kinematic);
Expand Down

0 comments on commit 7d6222f

Please sign in to comment.