-
Notifications
You must be signed in to change notification settings - Fork 4
feat: log clock calls, traps, time advancement #16
New issue
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
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice, thanks!
case clockFunctionUntil: | ||
return fmt.Sprintf("Until(%s, %v)", a.Time, a.Tags) | ||
default: | ||
return "?????" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return "?????" | |
return fmt.Sprintf("Unknown apiCall(fn=%d)", a.fn) |
case clockFunctionUntil: | ||
return "Until" | ||
default: | ||
return "?????" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return "?????" | |
return fmt.Sprintf("Unknown clockFunction(%d)", c) |
76e0ead
to
872f6cb
Compare
a8e9b32
to
d87ad1f
Compare
872f6cb
to
8c9d9c1
Compare
8c9d9c1
to
0e4c880
Compare
Merge activity
|
fixes #13
Adds logging of traps, calls, and advancing the clock like:
This should make it easier to debug a variety of issues, including not setting the trap before the call happens.