Add debug logging for GMCP/MSDP negotiation offers
This commit is contained in:
parent
7ba4ab90fb
commit
05b377f00a
1 changed files with 3 additions and 2 deletions
|
|
@ -233,8 +233,9 @@ class MudTelnetServer(TelnetServer):
|
||||||
"""Offer GMCP and MSDP alongside the standard options."""
|
"""Offer GMCP and MSDP alongside the standard options."""
|
||||||
super().begin_advanced_negotiation()
|
super().begin_advanced_negotiation()
|
||||||
assert self.writer is not None
|
assert self.writer is not None
|
||||||
self.writer.iac(WILL, GMCP)
|
gmcp_ok = self.writer.iac(WILL, GMCP)
|
||||||
self.writer.iac(WILL, MSDP)
|
msdp_ok = self.writer.iac(WILL, MSDP)
|
||||||
|
log.debug("offered GMCP=%s MSDP=%s", gmcp_ok, msdp_ok)
|
||||||
|
|
||||||
|
|
||||||
async def shell(
|
async def shell(
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue