api.go 346 Bytes
Newer Older
songlinfeng's avatar
songlinfeng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
# Copyright (c) 2024, HCUOpt CORPORATION.  All rights reserved.
**/

package logger

// Interface defines the API for the logger package
type Interface interface {
	Debugf(string, ...interface{})
	Errorf(string, ...interface{})
	Info(...interface{})
	Infof(string, ...interface{})
	Warning(...interface{})
	Warningf(string, ...interface{})
}