We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Debug
DebugFormatter
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
let .debug(self: String, dbg: db+DebugFormatter): db = ( dbg.str(self) ); let .debug(self: User, dbg: db+DebugFormatter): db = ( dbg.tag("User") .begin-struct-group() .field("name").kv().and(self.name) .field("mail").kv().and(self.mail) .end-struct-group() );
The text was updated successfully, but these errors were encountered:
Key points:
Sorry, something went wrong.
From an end user how do you think they will want to write debug messages?
I was thinking something like debug( channel, event ) that way the user will provide even more information.
debug( channel, event )
Channels seem like a useful pattern for pub/sub style debugging.
alex-s168
No branches or pull requests
The text was updated successfully, but these errors were encountered: