summaryrefslogtreecommitdiff
path: root/nslcd_systemd/nslcd_systemd.go
diff options
context:
space:
mode:
Diffstat (limited to 'nslcd_systemd/nslcd_systemd.go')
-rw-r--r--nslcd_systemd/nslcd_systemd.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/nslcd_systemd/nslcd_systemd.go b/nslcd_systemd/nslcd_systemd.go
index c0024e2..c05b0e9 100644
--- a/nslcd_systemd/nslcd_systemd.go
+++ b/nslcd_systemd/nslcd_systemd.go
@@ -107,12 +107,13 @@ func handler(backend nslcd_server.Backend, limits nslcd_server.Limits, conn *net
Logger: nslcd_server.LoggerFromContext(ctx),
}
ctx = context.WithValue(ctx, nslcd_server.LoggerKey, log)
+ defer log.Info("Connection closed")
cred, err := getpeercred(conn)
if err != nil {
- log.Debug("Connection from unknown client")
+ log.Info("Connection from unknown client")
} else {
- log.Debug(fmt.Sprintf("Connection from pid=%v uid=%v gid=%v",
+ log.Info(fmt.Sprintf("Connection from pid=%v uid=%v gid=%v",
cred.Pid, cred.Uid, cred.Gid))
ctx = context.WithValue(ctx, nslcd_server.PeerCredKey, cred)
}