Feat: Add timing to the main log output (ref #368) #372
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Feature #368
Add Timing to the main log output
Description
Start Time Capture: I introduced a startTime variable to record the current time at the beginning of the function with Date.now().
Execution Duration Calculation: After the command completes, I added a duration variable to calculate the time taken by subtracting startTime from the current time (Date.now()), which gives the duration in milliseconds.
Enhanced Logging: I updated the console.info log message to include the duration in milliseconds (%dms). Now, the log shows not only the completion message ("EO program assembled") but also the time it took to execute.
Modified lines:
PR-Codex overview
This PR adds timing measurements to various command functions in the codebase, allowing for better performance tracking by logging the duration of each operation.
Detailed summary
startTime
variable to capture the start time for each command function.duration
by subtractingstartTime
from the current time.verify
assemble
register
compile
transpile