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
Sometimes I'm getting messages with CHAR fields, that are set to 0 for example. This breaks logging, as binary data is mixed with text.
Would it be possible to change the way CHAR fields are printed currently:
builder << '"' << (char)writer.tradeCondition() << '"';
to something like:
if (std::isprint(writer.tradeCondition())) { builder << '"' << (char)writer.tradeCondition() << '"'; } else { builder << (int)writer.tradeCondition(); }
The text was updated successfully, but these errors were encountered:
Feel free to send a PR for this.
Sorry, something went wrong.
Remember this will cause the output to be locale dependent.
No branches or pull requests
Sometimes I'm getting messages with CHAR fields, that are set to 0 for example. This breaks logging, as binary data is mixed with text.
Would it be possible to change the way CHAR fields are printed currently:
to something like:
The text was updated successfully, but these errors were encountered: