Documentation ¶
Index ¶
Constants ¶
View Source
const ( Reset = "\033[0m" Red = "\033[31m" Green = "\033[32m" Yellow = "\033[33m" Blue = "\033[34m" Magenta = "\033[35m" Cyan = "\033[36m" White = "\033[37m" BlueBold = "\033[34;1m" MagentaBold = "\033[35;1m" RedBold = "\033[31;1m" YellowBold = "\033[33;1m" )
Colors for logger.
Variables ¶
View Source
var ErrRecordNotFound = errors.New("record not found")
ErrRecordNotFound record not found error for gorm.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { SlowThreshold time.Duration Colorful bool IgnoreRecordNotFoundError bool ParameterizedQueries bool }
Config logger config for gorm.
type Logger ¶
type Logger interface { LogMode(gormlogger.LogLevel) gormlogger.Interface Info(context.Context, string, ...interface{}) Warn(context.Context, string, ...interface{}) Error(context.Context, string, ...interface{}) Trace(ctx context.Context, begin time.Time, fc func() (sql string, rowsAffected int64), err error) }
Logger interface for gorm logger.
Click to show internal directories.
Click to hide internal directories.