LogValue should be used as an argument to any logging calls to augment the JSON output with more structured information. key is the dictionary parameter used to store value.
(key string, value any)
| 99 | // |
| 100 | // key is the dictionary parameter used to store value. |
| 101 | func LogValue(key string, value any) LogValueItem { |
| 102 | return LogValueItem{key: key, value: value, render: true} |
| 103 | } |
| 104 | |
| 105 | // LogValueHide should be used as an argument to any logging calls to |
| 106 | // augment the JSON output with more structured information. |
no outgoing calls
searching dependent graphs…