diff --git a/pkg/hubtest/hubtest_item.go b/pkg/hubtest/hubtest_item.go index b3df015ba..2ee9a7d7c 100644 --- a/pkg/hubtest/hubtest_item.go +++ b/pkg/hubtest/hubtest_item.go @@ -617,7 +617,7 @@ func (t *HubTestItem) RunWithNucleiTemplate() error { log.Errorf("unable to read crowdsec log file '%s': %s", crowdsecLogFile, err) } else { log.Errorf("crowdsec log file '%s'", crowdsecLogFile) - log.Errorf("%s", string(crowdsecLog)) + fmt.Printf("%s\n", string(crowdsecLog)) } } } else { @@ -631,7 +631,7 @@ func (t *HubTestItem) RunWithNucleiTemplate() error { log.Errorf("unable to read crowdsec log file '%s': %s", crowdsecLogFile, err) } else { log.Errorf("crowdsec log file '%s'", crowdsecLogFile) - log.Errorf("%s", string(crowdsecLog)) + fmt.Printf("%s\n", string(crowdsecLog)) } } }