import * as tru from "@tokio-js/trutrace";
function tracer(msg: string){// Not traced
const traces = tru.trace();
const [simple] = tru.format(msg, "INF", traces, new Date());
console.log(simple);
}
function internal_call() {// Internal Call
tracer("Internal Call");
}
function top_level_call() {
internal_call();
}
function main() {
top_level_call();
}
main();// Top Level Call
This repository was archived by the owner on Mar 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Trace everything
License
tokio-js/trutrace
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Trace everything
Resources
License
Stars
Watchers
Forks
Releases
No releases published