logging: guh

This commit is contained in:
Cynthia Foxwell 2025-07-22 18:58:17 -06:00
parent edbd039168
commit 43daa299b1
Signed by: Cynosphere
SSH key fingerprint: SHA256:H3SM8ufP/uxqLwKSH7xY89TDnbR9uOHzjLoBr0tlajk

View file

@ -26,7 +26,7 @@ async function getLoggingChannel(guild) {
function formatChange(before, after) { function formatChange(before, after) {
const beforeFormatted = before != null ? `\`${before}\`` : "<no value>"; const beforeFormatted = before != null ? `\`${before}\`` : "<no value>";
const afterFormatted = after != null ? `\`after\`` : "<no value>"; const afterFormatted = after != null ? `\`${after}\`` : "<no value>";
return `${beforeFormatted} -> ${afterFormatted}`; return `${beforeFormatted} -> ${afterFormatted}`;
} }