Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
ms-henglu committed Mar 6, 2025
1 parent 2639f1d commit 553b425
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/services/azapi_resource_example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func ListTestcases(resourceTypeDir string, includingRootTestcase bool) []Example
if tc, err := LoadTestcase(rootConfig); err == nil {
testcases = append(testcases, *tc)
} else {
fmt.Printf("Error loading config %s: %v\n", rootConfig, err)
fmt.Printf("[WARN] Error loading config %s: %v\n", rootConfig, err)
}
}

Expand All @@ -132,7 +132,7 @@ func ListTestcases(resourceTypeDir string, includingRootTestcase bool) []Example
if tc, err := LoadTestcase(subConfig); err == nil {
testcases = append(testcases, *tc)
} else {
fmt.Printf("Error loading config %s: %v\n", subConfig, err)
fmt.Printf("[WARN] Error loading config %s: %v\n", subConfig, err)
}
}

Expand Down

0 comments on commit 553b425

Please sign in to comment.