| 12345678910111213141516171819 |
- package log
- import "testing"
- func TestSLogger_Debug(t *testing.T) {
- logger := NewSLogger("./debug.log", "debug")
- SetDefaultLogger(logger)
- Debug("good")
- Warn("hhhh")
- }
- func TestSLogger_Error(t *testing.T) {
- logger := NewSLogger("./error.log", "info")
- SetDefaultLogger(logger)
- Debug("debug")
- Info("info")
- Error("good")
- Warn("hhhh")
- }
|