You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ however you probably want to use it in combination with CodeTracer, which would
55
55
56
56
### ENV variables
57
57
58
-
* if you pass `CODETRACER_RUBY_RECORDER_DEBUG=1`, you enables some additional debug-related logging
58
+
* if you pass `CODETRACER_RUBY_RECORDER_DEBUG=1`, you enable some additional debug-related logging
59
59
*`CODETRACER_RUBY_RECORDER_OUT_DIR` can be used to specify the directory for trace files
60
60
61
61
## Future directions
@@ -65,7 +65,7 @@ The current Ruby support is a prototype. In the future, it may be expanded to fu
65
65
### Current approach: TracePoint API
66
66
67
67
Currently we're using the TracePoint API: https://rubyapi.org/3.4/o/tracepoint .
68
-
This is very flexible and can function with probably multiple Ruby versions out of the box.
68
+
This is very flexible and can function with probably multiple Ruby versions out of the box.
69
69
However, this is limited:
70
70
71
71
* it's not optimal
@@ -87,7 +87,7 @@ The patching can be done either directly in the source code of the VM or through
87
87
88
88
#### Filtering
89
89
90
-
It would be useful to have a way to record only certain intervals within the program execution, or certain functions or modules:
90
+
It would be useful to have a way to record only certain intervals within the program execution, or certain functions or modules:
91
91
we plan on expanding the [trace format](https://github.com/metacraft-labs/runtime_tracing/) and CodeTracer' support, so that this is possible. It would let one be able to record interesting
92
92
parts of even long-running or more heavy programs.
0 commit comments