aboutsummaryrefslogtreecommitdiff
path: root/irclog.go
diff options
context:
space:
mode:
Diffstat (limited to 'irclog.go')
-rw-r--r--irclog.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/irclog.go b/irclog.go
index f9a7da8..f5c0f81 100644
--- a/irclog.go
+++ b/irclog.go
@@ -28,7 +28,7 @@ func (h *IRCLogHandler) Enabled(_ context.Context, level slog.Level) bool {
func (h *IRCLogHandler) Handle(_ context.Context, r slog.Record) error {
var sb strings.Builder
- sb.WriteString("PRIVMSG #logs :")
+ sb.WriteString("PRIVMSG " + ircChannel + " :")
sb.WriteString(r.Message)