2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2022-07-19 09:47:55 +01:00
|
|
|
|
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
2023-02-17 11:02:29 +00:00
|
|
|
"context"
|
2022-07-19 09:47:55 +01:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"codeberg.org/gruf/go-kv"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Entry struct {
|
2023-02-17 11:02:29 +00:00
|
|
|
ctx context.Context
|
|
|
|
kvs []kv.Field
|
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// WithContext updates Entry{} value context.
|
2023-02-17 11:02:29 +00:00
|
|
|
func (e Entry) WithContext(ctx context.Context) Entry {
|
|
|
|
e.ctx = ctx
|
|
|
|
return e
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// WithField appends key-value field to Entry{}.
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) WithField(key string, value interface{}) Entry {
|
2023-02-17 11:02:29 +00:00
|
|
|
e.kvs = append(e.kvs, kv.Field{K: key, V: value})
|
2022-07-19 09:47:55 +01:00
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// WithFields appends key-value fields to Entry{}.
|
2023-02-17 11:02:29 +00:00
|
|
|
func (e Entry) WithFields(kvs ...kv.Field) Entry {
|
|
|
|
e.kvs = append(e.kvs, kvs...)
|
2022-07-19 09:47:55 +01:00
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Trace will log formatted args as 'msg' field to the log at TRACE level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Trace(a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, TRACE, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Tracef will log format string as 'msg' field to the log at TRACE level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Tracef(s string, a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, TRACE, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Debug will log formatted args as 'msg' field to the log at DEBUG level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Debug(a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, DEBUG, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Debugf will log format string as 'msg' field to the log at DEBUG level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Debugf(s string, a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, DEBUG, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Info will log formatted args as 'msg' field to the log at INFO level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Info(a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, INFO, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Infof will log format string as 'msg' field to the log at INFO level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Infof(s string, a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, INFO, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Warn will log formatted args as 'msg' field to the log at WARN level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Warn(a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, WARN, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Warnf will log format string as 'msg' field to the log at WARN level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Warnf(s string, a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, WARN, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Error will log formatted args as 'msg' field to the log at ERROR level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Error(a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, ERROR, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Errorf will log format string as 'msg' field to the log at ERROR level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Errorf(s string, a ...interface{}) {
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, ERROR, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Panic will log formatted args as 'msg' field to the log at PANIC level.
|
|
|
|
// This will then call panic causing the application to crash.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Panic(a ...interface{}) {
|
|
|
|
defer panic(fmt.Sprint(a...))
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, PANIC, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Panicf will log format string as 'msg' field to the log at PANIC level.
|
|
|
|
// This will then call panic causing the application to crash.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Panicf(s string, a ...interface{}) {
|
|
|
|
defer panic(fmt.Sprintf(s, a...))
|
2024-09-20 14:30:33 +01:00
|
|
|
logf(e.ctx, 3, PANIC, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Log will log formatted args as 'msg' field to the log at given level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
|
|
|
func (e Entry) Log(lvl LEVEL, a ...interface{}) {
|
2023-02-17 11:02:29 +00:00
|
|
|
logf(e.ctx, 3, lvl, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Logf will log format string as 'msg' field to the log at given level.
|
|
|
|
//
|
|
|
|
//go:noinline
|
|
|
|
func (e Entry) Logf(lvl LEVEL, s string, a ...interface{}) {
|
2023-02-17 11:02:29 +00:00
|
|
|
logf(e.ctx, 3, lvl, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Print will log formatted args to the stdout log output.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Print(a ...interface{}) {
|
2023-02-17 11:02:29 +00:00
|
|
|
printf(3, e.kvs, args(len(a)), a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|
|
|
|
|
2024-09-20 14:30:33 +01:00
|
|
|
// Printf will log format string to the stdout log output.
|
|
|
|
//
|
|
|
|
//go:noinline
|
2022-07-19 09:47:55 +01:00
|
|
|
func (e Entry) Printf(s string, a ...interface{}) {
|
2023-02-17 11:02:29 +00:00
|
|
|
printf(3, e.kvs, s, a...)
|
2022-07-19 09:47:55 +01:00
|
|
|
}
|