summaryrefslogtreecommitdiff
path: root/internal/io/dlog/loggers/none.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/io/dlog/loggers/none.go')
-rw-r--r--internal/io/dlog/loggers/none.go16
1 files changed, 8 insertions, 8 deletions
diff --git a/internal/io/dlog/loggers/none.go b/internal/io/dlog/loggers/none.go
index 77168d7..f43c679 100644
--- a/internal/io/dlog/loggers/none.go
+++ b/internal/io/dlog/loggers/none.go
@@ -12,35 +12,35 @@ type none struct{}
func (none) Start(ctx context.Context, wg *sync.WaitGroup) { wg.Done() }
func (none) Log(now time.Time, message string) {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) LogWithColors(now time.Time, message, coloredMessage string) {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) Raw(now time.Time, message string) {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) RawWithColors(now time.Time, message, coloredMessage string) {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) Flush() {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) Pause() {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) Resume() {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) Rotate() {
- // This is empty because the none isn't logging but has to statify the interface.
+ // This is empty because the none isn't logging but has to satisfy the interface.
}
func (none) SupportsColors() bool { return false }