Log System Implementation #1

Merged
Rene Nochebuena merged 10 commits from feature/log-system-implementation into develop 2025-04-10 18:03:57 -06:00
3 changed files with 2 additions and 2 deletions
Showing only changes of commit a7c6a85084 - Show all commits

View File

@ -99,7 +99,7 @@ func Test_PanicPlainTextLogs(t *testing.T) {
func Test_FatalPlainTextLogs(t *testing.T) {
cmd := exec.Command(
"go", "run", "./test/main.go",
"go", "run", "./testbin/main.go",
)
cmd.Env = append(cmd.Env, "TEST_FATAL=1")

View File

@ -2,7 +2,7 @@ sonar.projectKey=b97a45b2-c25d-4fd1-898d-136414896ce6
sonar.projectName=mother-utils/motherlog
sonar.language=go
sonar.sources=.
sonar.exclusions=**/*_test.go
sonar.exclusions=**/*_test.go, testbin/**
sonar.tests=.
sonar.test.inclusions=**/*_test.go
sonar.go.tests.reportPaths=test-report.out