Skip to content

Commit c67fd74

Browse files
committed
Changed a log error to a log info, This appears to not be an error.
1 parent 188ce55 commit c67fd74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/sdl_android/src/main/java/com/android/grafika/gles/Texture2dProgram.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public Texture2dProgram(ProgramType programType) {
162162
if (mProgramHandle == 0) {
163163
throw new RuntimeException("Unable to create program");
164164
}
165-
Log.e(TAG,"Created program " + mProgramHandle + " (" + programType + ")");
165+
Log.i(TAG,"Created program " + mProgramHandle + " (" + programType + ")");
166166

167167
// get locations of attributes and uniforms
168168

0 commit comments

Comments
 (0)