We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Public Keys are logged in a not-so-great format when console logged in Node.Js.
Example:
// authorizedPubkey: PublicKey { // _bn: <BN: 919981a5497e8f85c805547439ae59f607ea625b86b1138ea6e41a68ab8ee038> // },
It was recommended in this PR to update the format.
console.log in NodeJs uses util.inspect. I suspect creating a similar inspect method like toString will suffice.
console.log
util.inspect
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem
Public Keys are logged in a not-so-great format when console logged in Node.Js.
Example:
It was recommended in this PR to update the format.
Proposed Solution
console.log
in NodeJs usesutil.inspect
. I suspect creating a similar inspect method like toString will suffice.The text was updated successfully, but these errors were encountered: