Ross ROSS = Recommend OSS · open-source software intelligence for agents

PlatformLab/NanoLog

Nanolog is an extremely performant nanosecond scale logging system for C++ that exposes a simple printf-like API. observed · 2026-08-28

github.com/PlatformLab/NanoLog · C++ · NOASSERTION (other) observed · 2026-08-28

Health v2 · maintenance only

23/100

  • Activity 0
  • Release rhythm 8
  • Longevity 100

Flags: no_license

How is this computed?

round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.

  • gap_med: n/a
  • age_days: 3666
  • days_rel: n/a
  • days_push: 912
  • n_releases_24m: 0

Full methodology

Adoption not part of the score

3381 stars · 376 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded

NanoLog is an extremely high-performance C++ logging library with a simple printf-like API that achieves over 80 million logs per second at roughly 7 nanoseconds median latency. It shifts work out of the runtime by extracting static log information at compile time, logging only dynamic arguments in the hot path, and deferring formatting to an offline post-processing step.

Use cases

  • log millions of messages per second from a c++ application without stalling the hot path
  • find a c++ logging library faster than spdlog, glog, or boost
  • add nanosecond-scale low-latency logging to a trading or HPC system
  • defer log formatting out of the runtime to a post-execution process
  • instrument latency-critical code where even a few hundred nanoseconds of logging overhead is too much
  • benchmark or replace an existing logging system that dominates tail latency

When to choose

  • You need maximum logging throughput and minimal runtime latency in C++
  • Your system is latency-critical and logging overhead must stay in the single-digit nanoseconds
  • You can run an offline decompression/formatting step to produce human-readable logs after execution

When to avoid

  • You need human-readable, fully formatted log lines immediately at runtime
  • You want a batteries-included ecosystem with many sinks, log rotation, and integrations (spdlog or glog fit better)
  • You need broad cross-platform support or long-term feature development rather than a focused research-grade system

Facets

library · maturity stable

logging developer-tools performance backend cpp windows low-latency high-performance printf-style-api nanosecond-latency compile-time-log-extraction deferred-formatting async-logging throughput usenix-paper linux

1 source

Member repositories

RepositoryRoleHealth v2
PlatformLab/NanoLogmain23

For agents

markdown · JSON · MCP: product_card(name="PlatformLab/NanoLog")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem