This commit is contained in:
Edouard DUPIN 2025-07-04 18:15:36 +02:00
parent a9ae5adc5c
commit d05675d9b8
2 changed files with 36 additions and 35 deletions

View File

@ -268,10 +268,11 @@
<version>5.11.0</version>
<scope>test</scope>
</dependency>
<!-- generic logger of SLF4J to console (in color) -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>2.1.0-alpha1</version>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.18</version>
<scope>test</scope>
</dependency>
</dependencies>

View File

@ -184,8 +184,8 @@ public class ResourceTexture2 extends Resource {
* @param image Image to set.
*/
public synchronized void set(final ImageByte image) {
LOGGER.debug("Set a new image in a texture:");
LOGGER.debug(" size=" + image.getSize());
System.out.println("Set a new image in a texture:");
System.out.println(" size=" + image.getSize());
this.data = image;
this.realImageSize = this.data.getSize();
// Disable compatibility size for embended ...