mirror of
https://github.com/wneessen/go-mail.git
synced 2024-11-09 23:42:55 +01:00
15 lines
440 B
Go
15 lines
440 B
Go
|
// SPDX-FileCopyrightText: Copyright (c) 2022-2023 The go-mail Authors
|
||
|
//
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
// Package log implements a logger interface that can be used within the go-mail package
|
||
|
package log
|
||
|
|
||
|
// Logger is the log interface for go-mail
|
||
|
type Logger interface {
|
||
|
Errorf(format string, v ...interface{})
|
||
|
Warnf(format string, v ...interface{})
|
||
|
Infof(format string, v ...interface{})
|
||
|
Debugf(format string, v ...interface{})
|
||
|
}
|