Skip to content

Commit

Permalink
Log|Resources: Adjusted log entry verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 1, 2016
1 parent b0a3319 commit 02fced3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/apps/client/src/resource/texturevariant.cpp
Expand Up @@ -565,17 +565,17 @@ uint Texture::Variant::prepare()
gl::UploadMethod uploadMethod = GL_ChooseUploadMethod(&c);
GL_UploadTextureContent(c, uploadMethod);

LOGDEV_RES_VERBOSE("Prepared \"%s\" variant (glName:%u)%s")
LOGDEV_RES_XVERBOSE("Prepared \"%s\" variant (glName:%u)%s")
<< d->texture.manifest().composeUri() << uint(d->glTexName)
<< (uploadMethod == gl::Immediate? " while not busy!" : "");
LOGDEV_RES_VERBOSE(" Content: %s") << Image_Description(image);
LOGDEV_RES_VERBOSE(" Specification %p: %s") << &d->spec << d->spec.asText();
LOGDEV_RES_XVERBOSE(" Content: %s") << Image_Description(image);
LOGDEV_RES_XVERBOSE(" Specification %p: %s") << &d->spec << d->spec.asText();

// Are we setting the logical dimensions to the pixel dimensions
// of the source image?
if(d->texture.width() == 0 && d->texture.height() == 0)
{
LOG_RES_VERBOSE("World dimensions for \"%s\" taken from image pixels %s")
LOG_RES_XVERBOSE("World dimensions for \"%s\" taken from image pixels %s")
<< d->texture.manifest().composeUri() << image.size.asText();

d->texture.setDimensions(image.size.toVector2i());
Expand Down

0 comments on commit 02fced3

Please sign in to comment.