echo/modules/debugserv/Cargo.toml
Jean bad17a184e
DebugServ: stream live services activity to the log channel
A pseudo-client that joins the staff log channel and reports what the services
layer is doing in real time: authentication (IDENTIFY and every SASL mechanism,
success and failure, with nick/host/account/reason), sessions (forced logout),
and the account/channel/operator lifecycle — the committed-event audit now
speaks through it, falling back to a server notice when it is off.

The reporting lives in the engine (feed()/who() helpers plus hooks at
complete_authenticate / sasl_login / sasl_deny); the module itself is just the
bot's identity and a STATUS/HELP surface. On by default; the feed is gated on
the configured [log] channel.
2026-07-16 22:27:35 +00:00

8 lines
248 B
TOML

[package]
name = "echo-debugserv"
version = "0.0.1"
edition = "2021"
description = "DebugServ: stream live services activity (auth, sessions, account/channel/oper events) to the staff log channel."
[dependencies]
echo-api = { path = "../../api" }