Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/vouch/jsonl_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
from .capabilities import capabilities as build_caps
from .context import build_context_pack
from .logging_config import configure_logging

_log = logging.getLogger("vouch.jsonl_server")
from .models import ProposalStatus
from .page_filters import filter_pages
from .proposals import (
Expand All @@ -65,6 +63,8 @@
)
from .synthesize import synthesize

_log = logging.getLogger("vouch.jsonl_server")

# Per-request actor override. The HTTP transport sets this from the
# X-Vouch-Agent header so audit attribution is correct without mutating
# process-wide env (each ThreadingHTTPServer request thread gets its own
Expand Down
Loading