Skip to content

Commit

Permalink
Remove console.log. Print errors to stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
ullenius committed Jul 19, 2022
1 parent edc8873 commit 7ef8a6b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions gbsinfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,11 @@ function readFile(input) {
author : readChar(header.slice(48, 48+32)),
copyright : readChar(header.slice(80, 80+32))
};
console.log("timerModulo", gbsHeader.timerModulo);
console.log("timerControl", gbsHeader.timerControl);

setTextarea( gbsHeader );
}
).catch( function handle(err) {
console.log(err);
console.error(err);
});
}

Expand Down

0 comments on commit 7ef8a6b

Please sign in to comment.