init
This commit is contained in:
21
mylog/log_test.go
Normal file
21
mylog/log_test.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package mylog
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
||||
func TestLog(t *testing.T) {
|
||||
Debug("time: ", time.Now())
|
||||
Info("time: ", time.Now())
|
||||
Warn("time: ", time.Now())
|
||||
Error("time: ", time.Now())
|
||||
|
||||
fmt.Println()
|
||||
|
||||
Debugf("time: %s", time.Now())
|
||||
Infof("time: %s", time.Now())
|
||||
Warnf("time: %s", time.Now())
|
||||
Errorf("time: %s", time.Now())
|
||||
}
|
||||
Reference in New Issue
Block a user