Skip to content

Commit 15b5bcc

Browse files
committed
Output to stdout, not stderr
1 parent 8b9617c commit 15b5bcc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package main
22

33
import (
4+
"fmt"
5+
46
"github.com/github/codeql-go/extractor/configurebaseline"
57
)
68

@@ -9,6 +11,6 @@ func main() {
911
if err != nil {
1012
panic(err)
1113
} else {
12-
println(string(jsonResult))
14+
fmt.Println(string(jsonResult))
1315
}
1416
}

0 commit comments

Comments
 (0)