Skip to content

Commit

Permalink
Remove console.log statement in DecryptLoginStream transform method
Browse files Browse the repository at this point in the history
  • Loading branch information
GorlikItsMe committed May 17, 2024
1 parent 22aea42 commit c14d979
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/nostaleCryptography/client/login/decrypt_stream.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export default class DecryptLoginStream extends Transform {
}

_transform(packet: Buffer, _: BufferEncoding, callback: TransformCallback): void {
console.log("DecryptLoginStream.transform called!");
if (!Buffer.isBuffer(packet)) {
callback(
new TypeError("The first argument must be a login encrypted packet buffer.")
Expand Down

0 comments on commit c14d979

Please sign in to comment.