diff options
Diffstat (limited to 'git_hooks_handle_linux.go')
-rw-r--r-- | git_hooks_handle_linux.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git_hooks_handle_linux.go b/git_hooks_handle_linux.go index 3c556c3..440bd46 100644 --- a/git_hooks_handle_linux.go +++ b/git_hooks_handle_linux.go @@ -12,6 +12,7 @@ import ( "errors" "fmt" "io" + "log/slog" "net" "os" "path/filepath" @@ -24,7 +25,6 @@ import ( "github.com/jackc/pgx/v5" "go.lindenii.runxiyu.org/forge/misc" "go.lindenii.runxiyu.org/lindenii-common/ansiec" - "go.lindenii.runxiyu.org/lindenii-common/clog" ) var ( @@ -253,7 +253,7 @@ func hooksHandler(conn net.Conn) { select { case ircSendBuffered <- "PRIVMSG #chat :New merge request at " + mergeRequestWebURL: default: - clog.Error("IRC SendQ exceeded") + slog.Error("IRC SendQ exceeded") } } else { // Existing contrib branch var existingMRUser int |