fslog_instance_test.go 358 B

123456789101112
  1. package fslog
  2. import (
  3. "testing"
  4. )
  5. func TestFSLogInstanceToConsole(t *testing.T) {
  6. Error("demo", "TestFSLogInstanceToConsole", "test", "error test")
  7. Debug("demo", "TestFSLogInstanceToConsole", "test", "debug test")
  8. Info("demo", "TestFSLogInstanceToConsole", "test", "info test")
  9. Warning("demo", "TestFSLogInstanceToConsole", "test", "warning test")
  10. }