server/logger.go
xcxinng f4eb5c2723
Some checks failed
continuous-integration/drone/push Build is failing
optimization on stack trace and fix wrong words (#154)
Co-authored-by: xing1680 <805761640@qq.com>
Reviewed-on: #154
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: xcxinng <xcxinng@noreply.gitea.io>
Co-committed-by: xcxinng <xcxinng@noreply.gitea.io>
2021-07-04 19:15:47 +08:00

61 lines
1.9 KiB
Go

// Copyright 2018 The goftp Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package server
import (
"fmt"
"log"
)
// Logger represents an interface to record all ftp information and command
type Logger interface {
Print(sessionID string, message interface{})
Printf(sessionID string, format string, v ...interface{})
PrintCommand(sessionID string, command string, params string)
PrintResponse(sessionID string, code int, message string)
}
// StdLogger use an instance of this to log in a standard format
type StdLogger struct{}
// Print implements Logger
func (logger *StdLogger) Print(sessionID string, message interface{}) {
log.Printf("%s %s", sessionID, message)
}
// Printf implements Logger
func (logger *StdLogger) Printf(sessionID string, format string, v ...interface{}) {
logger.Print(sessionID, fmt.Sprintf(format, v...))
}
// PrintCommand implements Logger
func (logger *StdLogger) PrintCommand(sessionID string, command string, params string) {
if command == "PASS" {
log.Printf("%s > PASS ****", sessionID)
} else {
log.Printf("%s > %s %s", sessionID, command, params)
}
}
// PrintResponse implements Logger
func (logger *StdLogger) PrintResponse(sessionID string, code int, message string) {
log.Printf("%s < %d %s", sessionID, code, message)
}
// DiscardLogger represents a silent logger, produces no output
type DiscardLogger struct{}
// Print implements Logger
func (logger *DiscardLogger) Print(sessionID string, message interface{}) {}
// Printf implements Logger
func (logger *DiscardLogger) Printf(sessionID string, format string, v ...interface{}) {}
// PrintCommand implements Logger
func (logger *DiscardLogger) PrintCommand(sessionID string, command string, params string) {}
// PrintResponse implements Logger
func (logger *DiscardLogger) PrintResponse(sessionID string, code int, message string) {}