refactor(auth): route challenge debug logs through structured logger - #141
Open
ZacLou wants to merge 1 commit into
Open
refactor(auth): route challenge debug logs through structured logger#141ZacLou wants to merge 1 commit into
ZacLou wants to merge 1 commit into
Conversation
ZacLou
force-pushed
the
issue-133-structured-logger
branch
from
August 31, 2026 22:39
f11c3ed to
9f2f03f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Closes #133
Replaces the two
console.debugcalls insrc/auth.tswith a structured logger so the/auth/challengepath no longer leaks member addresses to stdout unconditionally.Changes:
src/lib/logger.ts: a minimal structured logger that respectsLOG_LEVELand outputs single JSON lines.formatAddress()to truncate Stellar addresses for logs (e.g.GABC...WXYZ).src/auth.tsto log throughlogger.debug(...)with a truncated address instead ofconsole.debug(...).The debug messages are now suppressed when
LOG_LEVELis set toinfoor higher, and addresses are no longer fully exposed in logs.