fix(logger)!: context logger use the StandardLogger as default

Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
This commit is contained in:
2026-01-09 09:47:39 +01:00
parent 126f080612
commit 252c3582d6

View File

@@ -3,8 +3,6 @@ package logger
import (
"context"
"sync"
"github.com/sirupsen/logrus"
)
var (
@@ -15,7 +13,7 @@ var (
type log struct{}
func init() {
defaultLogger = &logger{fl: logrus.New()}
defaultLogger = StandardLogger()
}
var C = From