Update project name in sonar configuration #5

Merged
Cloud Administrator merged 15 commits from release/v1.0.0 into main 2025-04-13 11:46:19 -06:00
Showing only changes of commit b7202bc141 - Show all commits

View File

@ -59,10 +59,17 @@ func Test_PlainTextLogs(t *testing.T) {
func Test_MutedPlainTextLogs(t *testing.T) {
InitStoneLog(ERROR, false, true)
// This won't change the log level
SetLogLevel(-1)
// Following won't appear
Trace("This is a trace log")
Debug("This is a debug log")
Observation("This is an observation log")
Hypothesis("This is a hypothesis log")
// Until this one
Failure("This is a failure log")
}