mirror of https://github.com/jackc/pgx.git
Remove pgx logging code moved to tracelog
parent
68b7e12df2
commit
83780b85b5
|
@ -6,7 +6,7 @@ import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jackc/pgx/v5"
|
"github.com/jackc/pgx/v5/tracelog"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TestingLogger interface defines the subset of testing.TB methods used by this
|
// TestingLogger interface defines the subset of testing.TB methods used by this
|
||||||
|
@ -23,7 +23,7 @@ func NewLogger(l TestingLogger) *Logger {
|
||||||
return &Logger{l: l}
|
return &Logger{l: l}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Logger) Log(ctx context.Context, level pgx.LogLevel, msg string, data map[string]any) {
|
func (l *Logger) Log(ctx context.Context, level tracelog.LogLevel, msg string, data map[string]any) {
|
||||||
logArgs := make([]any, 0, 2+len(data))
|
logArgs := make([]any, 0, 2+len(data))
|
||||||
logArgs = append(logArgs, level, msg)
|
logArgs = append(logArgs, level, msg)
|
||||||
for k, v := range data {
|
for k, v := range data {
|
||||||
|
|
106
logger.go
106
logger.go
|
@ -1,106 +0,0 @@
|
||||||
package pgx
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"encoding/hex"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
// The values for log levels are chosen such that the zero value means that no
|
|
||||||
// log level was specified.
|
|
||||||
const (
|
|
||||||
LogLevelTrace = 6
|
|
||||||
LogLevelDebug = 5
|
|
||||||
LogLevelInfo = 4
|
|
||||||
LogLevelWarn = 3
|
|
||||||
LogLevelError = 2
|
|
||||||
LogLevelNone = 1
|
|
||||||
)
|
|
||||||
|
|
||||||
// LogLevel represents the pgx logging level. See LogLevel* constants for
|
|
||||||
// possible values.
|
|
||||||
type LogLevel int
|
|
||||||
|
|
||||||
func (ll LogLevel) String() string {
|
|
||||||
switch ll {
|
|
||||||
case LogLevelTrace:
|
|
||||||
return "trace"
|
|
||||||
case LogLevelDebug:
|
|
||||||
return "debug"
|
|
||||||
case LogLevelInfo:
|
|
||||||
return "info"
|
|
||||||
case LogLevelWarn:
|
|
||||||
return "warn"
|
|
||||||
case LogLevelError:
|
|
||||||
return "error"
|
|
||||||
case LogLevelNone:
|
|
||||||
return "none"
|
|
||||||
default:
|
|
||||||
return fmt.Sprintf("invalid level %d", ll)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Logger is the interface used to get logging from pgx internals.
|
|
||||||
type Logger interface {
|
|
||||||
// Log a message at the given level with data key/value pairs. data may be nil.
|
|
||||||
Log(ctx context.Context, level LogLevel, msg string, data map[string]any)
|
|
||||||
}
|
|
||||||
|
|
||||||
// LoggerFunc is a wrapper around a function to satisfy the pgx.Logger interface
|
|
||||||
type LoggerFunc func(ctx context.Context, level LogLevel, msg string, data map[string]interface{})
|
|
||||||
|
|
||||||
// Log delegates the logging request to the wrapped function
|
|
||||||
func (f LoggerFunc) Log(ctx context.Context, level LogLevel, msg string, data map[string]interface{}) {
|
|
||||||
f(ctx, level, msg, data)
|
|
||||||
}
|
|
||||||
|
|
||||||
// LogLevelFromString converts log level string to constant
|
|
||||||
//
|
|
||||||
// Valid levels:
|
|
||||||
// trace
|
|
||||||
// debug
|
|
||||||
// info
|
|
||||||
// warn
|
|
||||||
// error
|
|
||||||
// none
|
|
||||||
func LogLevelFromString(s string) (LogLevel, error) {
|
|
||||||
switch s {
|
|
||||||
case "trace":
|
|
||||||
return LogLevelTrace, nil
|
|
||||||
case "debug":
|
|
||||||
return LogLevelDebug, nil
|
|
||||||
case "info":
|
|
||||||
return LogLevelInfo, nil
|
|
||||||
case "warn":
|
|
||||||
return LogLevelWarn, nil
|
|
||||||
case "error":
|
|
||||||
return LogLevelError, nil
|
|
||||||
case "none":
|
|
||||||
return LogLevelNone, nil
|
|
||||||
default:
|
|
||||||
return 0, errors.New("invalid log level")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func logQueryArgs(args []any) []any {
|
|
||||||
logArgs := make([]any, 0, len(args))
|
|
||||||
|
|
||||||
for _, a := range args {
|
|
||||||
switch v := a.(type) {
|
|
||||||
case []byte:
|
|
||||||
if len(v) < 64 {
|
|
||||||
a = hex.EncodeToString(v)
|
|
||||||
} else {
|
|
||||||
a = fmt.Sprintf("%x (truncated %d bytes)", v[:64], len(v)-64)
|
|
||||||
}
|
|
||||||
case string:
|
|
||||||
if len(v) > 64 {
|
|
||||||
a = fmt.Sprintf("%s (truncated %d bytes)", v[:64], len(v)-64)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
logArgs = append(logArgs, a)
|
|
||||||
}
|
|
||||||
|
|
||||||
return logArgs
|
|
||||||
}
|
|
Loading…
Reference in New Issue