[FEAT] decrease a log level

This commit is contained in:
Edouard DUPIN 2025-05-26 07:58:41 +02:00
parent fb8d53359e
commit a9ae5adc5c

View File

@ -243,7 +243,7 @@ public class ResourceTexture2 extends Resource {
if (this.loaded) { if (this.loaded) {
if (this.lastTypeObject != typeObject || this.lastSizeObject != sizeObject if (this.lastTypeObject != typeObject || this.lastSizeObject != sizeObject
|| !this.lastSize.equals(this.data.getSize())) { || !this.lastSize.equals(this.data.getSize())) {
LOGGER.warn("TEXTURE: Rm [" + getId() + "] texId=" + this.texId); LOGGER.trace("TEXTURE: Rm [" + getId() + "] texId=" + this.texId);
OpenGL.glDeleteTextures(this.texId); OpenGL.glDeleteTextures(this.texId);
this.loaded = false; this.loaded = false;
} }