Skip to content

Commit

Permalink
Make shaders only log at debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Jul 27, 2024
1 parent 2986baf commit 1fdfcdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc-core/src/arc/graphics/gl/Shader.java
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public Shader(Fi vertexShader, Fi fragmentShader){
this(vertexShader.readString(), fragmentShader.readString());

if(!log.isEmpty()){
Log.warn("Shader " + vertexShader + " | " + fragmentShader + ":\n" + log);
Log.debug("Shader " + vertexShader + " | " + fragmentShader + ":\n" + log);
}
}

Expand Down

0 comments on commit 1fdfcdc

Please sign in to comment.