1
0
mirror of synced 2026-02-06 19:05:55 +00:00

Add Warningf to logger interface amd impl

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
This commit is contained in:
Stefan Prodan
2021-04-08 10:48:27 +03:00
parent 8b5583930e
commit 74feda73af
3 changed files with 7 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ type Logger interface {
Waitingf(format string, a ...interface{})
// Successf logs a formatted success message.
Successf(format string, a ...interface{})
// Warningf logs a formatted warning message.
Warningf(format string, a ...interface{})
// Failuref logs a formatted failure message.
Failuref(format string, a ...interface{})
}