Skip to content

Commit

Permalink
message change
Browse files Browse the repository at this point in the history
  • Loading branch information
thetayloredman committed Feb 23, 2023
1 parent 7934428 commit 0e8d349
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/stream/DirectStream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,14 +249,7 @@ export default class DirectStream extends Emitter<DirectStreamEventArguments> {
number: Math.min(255, Math.floor(size / sizeFn(4)) - 1),
remainder: size - sizeFn(4) * (Math.min(255, Math.floor(size / sizeFn(4)) - 1) + 1)
};
log(
"calculated control character data for size",
size,
"(using arbitrary units) and control character",
ControlCharacters[controlCharacter],
"as",
result
);
log("calculated control character data for size", size, "bytes and control character", ControlCharacters[controlCharacter], "as", result);
return result;
}

Expand Down

0 comments on commit 0e8d349

Please sign in to comment.