gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

README.md (677B)


      1 # go-kv
      2 
      3 This library provides a key-value field structure `kv.Field{}` that plays well with the `"fmt"` package. It gives an easy means of appending key-value fields to log entries, in a manner that also happens to look nice! (it's not far removed from using a `map[string]interface{}`).
      4 
      5 The formatting for these key-value fields is handled by the `"fmt"` package by default. If you set the `kvformat` build tag then it will use a custom formatting library found under `format/`. You can see the benchmarks for both below.
      6 
      7 ![benchmarks](https://codeberg.org/gruf/go-kv/raw/main/benchmark.png)
      8 
      9 TODO: benchmarks comparing these to using `fmt.Sprintf("%q=%+v", ...)` yourself.