| 
									
										
										
										
											2023-03-12 16:00:57 +01: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 12:02:29 +01:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | 	"fmt" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-07-29 09:23:20 +02:00
										 |  |  | 	"codeberg.org/gruf/go-kv/v2" | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Entry struct { | 
					
						
							| 
									
										
										
										
											2023-02-17 12:02:29 +01:00
										 |  |  | 	ctx context.Context | 
					
						
							|  |  |  | 	kvs []kv.Field | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // WithContext updates Entry{} value context. | 
					
						
							| 
									
										
										
										
											2023-02-17 12:02:29 +01: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 13:30:33 +00: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 12:02:29 +01: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 13:30:33 +00:00
										 |  |  | // WithFields appends key-value fields to Entry{}. | 
					
						
							| 
									
										
										
										
											2023-02-17 12:02:29 +01: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 13:30:33 +00:00
										 |  |  | // Trace will log formatted args as 'msg' field to the log at TRACE level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Trace(a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if TRACE > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, TRACE, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Tracef will log format string as 'msg' field to the log at TRACE level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Tracef(s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if TRACE > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, TRACE, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Debug will log formatted args as 'msg' field to the log at DEBUG level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Debug(a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if DEBUG > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, DEBUG, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Debugf will log format string as 'msg' field to the log at DEBUG level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Debugf(s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if DEBUG > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, DEBUG, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Info will log formatted args as 'msg' field to the log at INFO level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Info(a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if INFO > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, INFO, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Infof will log format string as 'msg' field to the log at INFO level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Infof(s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if INFO > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, INFO, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Warn will log formatted args as 'msg' field to the log at WARN level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Warn(a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if WARN > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, WARN, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Warnf will log format string as 'msg' field to the log at WARN level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Warnf(s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if WARN > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, WARN, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Error will log formatted args as 'msg' field to the log at ERROR level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Error(a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if ERROR > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, ERROR, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Errorf will log format string as 'msg' field to the log at ERROR level. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Errorf(s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if ERROR > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, ERROR, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00: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. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Panic(a ...interface{}) { | 
					
						
							|  |  |  | 	defer panic(fmt.Sprint(a...)) | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if PANIC > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, PANIC, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00: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. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Panicf(s string, a ...interface{}) { | 
					
						
							|  |  |  | 	defer panic(fmt.Sprintf(s, a...)) | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if PANIC > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, PANIC, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Log will log formatted args as 'msg' field to the log at given level. | 
					
						
							|  |  |  | func (e Entry) Log(lvl LEVEL, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if lvl > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, lvl, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Logf will log format string as 'msg' field to the log at given level. | 
					
						
							|  |  |  | func (e Entry) Logf(lvl LEVEL, s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-09-07 14:47:45 +02:00
										 |  |  | 	if lvl > loglvl { | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, lvl, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Print will log formatted args to the stdout log output. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Print(a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, UNSET, e.kvs, "", a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-20 13:30:33 +00:00
										 |  |  | // Printf will log format string to the stdout log output. | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | func (e Entry) Printf(s string, a ...interface{}) { | 
					
						
							| 
									
										
										
										
											2025-08-09 16:23:00 +02:00
										 |  |  | 	logf(e.ctx, UNSET, e.kvs, s, a...) | 
					
						
							| 
									
										
										
										
											2022-07-19 09:47:55 +01:00
										 |  |  | } |