diff options
| author | 2025-03-26 11:44:24 +0000 | |
|---|---|---|
| committer | 2025-03-26 11:44:24 +0000 | |
| commit | f46e490c304d7cdc366542b2db98782be33271bf (patch) | |
| tree | 70a6f3d79a8a8eca49adea8bc9cc302ef58a4d2b /vendor/github.com/sagikazarmark/slog-shim/record.go | |
| parent | feat: Relax URL matching (#3925) (diff) | |
| download | gotosocial-f46e490c304d7cdc366542b2db98782be33271bf.tar.xz | |
[chore] bumps our spf13/viper version (#3943)
* bumps our spf13/viper version
* fixes the one breaking change
Diffstat (limited to 'vendor/github.com/sagikazarmark/slog-shim/record.go')
| -rw-r--r-- | vendor/github.com/sagikazarmark/slog-shim/record.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/github.com/sagikazarmark/slog-shim/record.go b/vendor/github.com/sagikazarmark/slog-shim/record.go deleted file mode 100644 index 85ad1f784..000000000 --- a/vendor/github.com/sagikazarmark/slog-shim/record.go +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright 2022 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build go1.21 - -package slog - -import ( - "log/slog" - "time" -) - -// A Record holds information about a log event. -// Copies of a Record share state. -// Do not modify a Record after handing out a copy to it. -// Call [NewRecord] to create a new Record. -// Use [Record.Clone] to create a copy with no shared state. -type Record = slog.Record - -// NewRecord creates a Record from the given arguments. -// Use [Record.AddAttrs] to add attributes to the Record. -// -// NewRecord is intended for logging APIs that want to support a [Handler] as -// a backend. -func NewRecord(t time.Time, level Level, msg string, pc uintptr) Record { - return slog.NewRecord(t, level, msg, pc) -} - -// Source describes the location of a line of source code. -type Source = slog.Source |
