diff --git a/docs/_sass/_code.scss b/docs/_sass/_code.scss index e86c334..099b172 100644 --- a/docs/_sass/_code.scss +++ b/docs/_sass/_code.scss @@ -70,6 +70,44 @@ } } +// VS comparison list (Timer Ninja vs Heavy Frameworks) +.vs-list { + list-style: none; + padding: 0; + margin: 0; + + li { + position: relative; + padding: 0.55rem 0 0.55rem 1.6rem; + font-size: 0.9rem; + line-height: 1.5; + color: var(--color-text-muted); + border-bottom: 1px solid var(--color-border); + + &:last-child { + border-bottom: none; + } + + &::before { + position: absolute; + left: 0; + top: 0.55rem; + } + } +} + +.code-panel--before .vs-list li::before { + content: "✕"; + color: $accent-red; + font-weight: 700; +} + +.code-panel--after .vs-list li::before { + content: "✓"; + color: $primary; + font-weight: 700; +} + .comparison__result { text-align: center; padding: $space-xl 0; diff --git a/docs/index.html b/docs/index.html index 72d98bd..137164a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -18,7 +18,7 @@
- Track execution time with a single annotation. Preserve call hierarchies. Zero boilerplate. Built on AspectJ. + Track execution time with a single annotation. Get a full call hierarchy with timing & arguments — no heavy tracing frameworks required.
@@ -161,6 +161,61 @@Most apps don't need distributed tracing infrastructure just to answer “why is this method slow?”
+Tracer API@TimerNinjaTrackerincludeArgs = true