summaryrefslogtreecommitdiff
path: root/src/nshd/hackers_git/hackers.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/nshd/hackers_git/hackers.go')
-rw-r--r--src/nshd/hackers_git/hackers.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nshd/hackers_git/hackers.go b/src/nshd/hackers_git/hackers.go
index f47868f..1eca0f6 100644
--- a/src/nshd/hackers_git/hackers.go
+++ b/src/nshd/hackers_git/hackers.go
@@ -42,21 +42,21 @@ var _ nslcd_proto.Backend = &Hackers{}
func (o *Hackers) Init() error {
err := o.Reload()
if err != nil {
- logger.Err("Could not initialize hackers.git: %v", err)
+ logger.Err("hackers.git: Could not initialize: %v", err)
return err
}
return nil
}
func (o *Hackers) Close() {
- logger.Info("Closing hackers.git session")
+ logger.Info("hackers.git: Closing session")
o.lock.Lock()
defer o.lock.Unlock()
o.close()
}
func (o *Hackers) Reload() error {
- logger.Info("Loading hackers.git session")
+ logger.Info("hackers.git: Loading session")
o.lock.Lock()
defer o.lock.Unlock()