Skip to content

Commit

Permalink
downgrading 'freeing artifact' messages to EUCADEBUG2
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii committed Jan 5, 2012
1 parent b09e20f commit 76ab62a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/vbr.c
Expand Up @@ -1007,7 +1007,7 @@ void art_free (artifact * a) // frees the artifact and all its dependencies
for (int i = 0; i < MAX_ARTIFACT_DEPS && a->deps[i]; i++) {
art_free (a->deps[i]);
}
logprintfl (EUCADEBUG, "[%s] freeing artifact %03d|%s size=%lld vbr=%u cache=%d file=%d\n",
logprintfl (EUCADEBUG2, "[%s] freeing artifact %03d|%s size=%lld vbr=%u cache=%d file=%d\n",
a->instanceId, a->seq, a->id, a->size_bytes, a->vbr, a->may_be_cached, a->must_be_file);
free (a);
}
Expand Down

0 comments on commit 76ab62a

Please sign in to comment.