Issue #2001 fix message priorities

Change-Id: I63b404133f081f7a373ca557adb25827033b1c6b

Former-commit-id: 5be268682a [formerly 4184cd436a] [formerly a31dd6af4c [formerly 10ec050edeea997c50d132dce12d2a78e723ea15]]
Former-commit-id: a31dd6af4c
Former-commit-id: e91f05b0d3
This commit is contained in:
Nate Jensen 2013-06-12 12:07:34 -05:00
parent 1357c03113
commit 4f65ea412d
2 changed files with 3 additions and 3 deletions

View file

@ -286,7 +286,7 @@ public class RedbookFrame implements IRenderable {
if (!currBlock.equals("")) {
status.unhandledPackets = true;
statusHandler
.warn("Unhandled redbook packet: (mode="
.debug("Unhandled redbook packet: (mode="
+ block.getMode() + ", submode="
+ block.getSubMode() + ")");
}

View file

@ -261,10 +261,10 @@ public class RedbookResource extends
if (status != null) {
if (status.unhandledPackets) {
statusHandler
.info("Warning: Unrecognized redbook packets found. Rendering may not be complete.");
.debug("Warning: Unrecognized redbook packets found. Rendering may not be complete.");
} else if (status.vectorRenderingWarning) {
statusHandler
.info("Warning: Some redbook vectors could not be rendered. Rendering may not be complete.");
.debug("Warning: Some redbook vectors could not be rendered. Rendering may not be complete.");
}
}
}