diff --git a/src/Texture.cpp b/src/Texture.cpp index 965fbdf..40b1353 100644 --- a/src/Texture.cpp +++ b/src/Texture.cpp @@ -97,7 +97,7 @@ void Texture::load(SDL_Surface* surface) { message << "Loading image from SDL surface (" << surface->w << "×" << surface->h << ", " << SDL_GetPixelFormatName(surface->format->format) << ")"; load(surface->pixels, {surface->w, surface->h}, GL_RGBA, GL_UNSIGNED_BYTE); - message_level = sb::Log::INFO; + message_level = sb::Log::DEBUG; } else { @@ -120,7 +120,7 @@ void Texture::load(void* pixels, glm::vec2 size, GLenum format, GLenum type) bind(); glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, size.x, size.y, format, type, pixels); message << "Loaded " << size.x << "×" << size.y << " image into texture ID " << id(); - message_level = sb::Log::INFO; + message_level = sb::Log::DEBUG; } else {