Use internal log package to avoid breaking programs that have their own global loggers
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-09-20 15:33:26 -07:00
parent cf8d08574f
commit 6388180768
22 changed files with 105 additions and 21 deletions

View File

@@ -22,7 +22,7 @@ import (
"os"
"github.com/pelletier/go-toml/v2"
"go.elara.ws/logger/log"
"go.elara.ws/lure/internal/log"
"go.elara.ws/lure/internal/types"
)

View File

@@ -23,7 +23,7 @@ import (
"path/filepath"
"github.com/pelletier/go-toml/v2"
"go.elara.ws/logger/log"
"go.elara.ws/lure/internal/log"
)
type Paths struct {

View File

@@ -22,7 +22,7 @@ import (
"os"
"strings"
"go.elara.ws/logger/log"
"go.elara.ws/lure/internal/log"
"golang.org/x/text/language"
)