PR Summary

What problems was I solving

The @architect/logger package was re-exporting LogFn from @architect/logger-context, but no code in the repository imported LogFn through @architect/logger; every caller already used the canonical @architect/logger-context source. This unused re-export widened the public API surface for no benefit.

What user-facing changes did I ship

None. This is an internal cleanup with no observable behavior, runtime, or API contract changes.

How I implemented it

Removed LogFn from the re-export statement in architect/logger/main/index.ts, leaving only the Logger re-export and the existing getLogger implementation unchanged.

Description for the changelog

Removed the unused LogFn type re-export from @architect/logger. All existing LogFn consumers already import it directly from @architect/logger-context, so no call sites need to change.

Remove dead LogFn re-export from @architect/logger

low1 file
Removes the unreferenced `LogFn` type re-export from `@architect/logger`; all consumers already import `LogFn` directly from `@architect/logger-context`.