2025-02-17 21:04:13 +08:00
|
|
|
package rabbitmqamqp
|
2025-01-16 22:26:12 +08:00
|
|
|
|
|
|
|
|
import "log/slog"
|
|
|
|
|
|
|
|
|
|
func Info(msg string, args ...any) {
|
|
|
|
|
slog.Info(msg, args...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Debug(msg string, args ...any) {
|
|
|
|
|
slog.Debug(msg, args...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Error(msg string, args ...any) {
|
|
|
|
|
slog.Error(msg, args...)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func Warn(msg string, args ...any) {
|
|
|
|
|
slog.Warn(msg, args...)
|
|
|
|
|
}
|