diff --git a/applications/gui/src/gltexture.cpp b/applications/gui/src/gltexture.cpp
index 88dd31ab9aac53189e1f2b05403a2f9aa1082b2a..8b54e22efb2b5d51d24d69bfcafcba2cb3201d2a 100644
--- a/applications/gui/src/gltexture.cpp
+++ b/applications/gui/src/gltexture.cpp
@@ -59,7 +59,6 @@ void GLTexture::make(int width, int height) {
 	width_ = width;
 	height_ = height;
 	stride_ = ((width*4) % ALIGNMENT != 0) ? ((width*4) + (ALIGNMENT - ((width*4) % ALIGNMENT))) / 4 : width;
-	LOG(INFO) << "STRIDE: " << stride_;
 
 	if (width == 0 || height == 0) {
 		throw FTL_Error("Invalid texture size");