...

Source file src/edge-infra.dev/pkg/lib/fog/examples_test.go

Documentation: edge-infra.dev/pkg/lib/fog

     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