1 package fog 2 3 func ExampleWithLabels() { 4 l := WithLabels(New(), "labelKey", "labelValue") 5 l.Info("howdy") 6 } 7 8 func ExampleInfo() { 9 l := New() 10 l.Info("test info log") 11 } 12
View as plain text