cat toolexec.log

This commit is contained in:
grambbledook
2025-12-11 19:09:47 +01:00
parent 815a4aac59
commit 108df86698
2 changed files with 7 additions and 1 deletions
@@ -26,6 +26,12 @@ jobs:
cd ../
- name: Build Grafana
continue-on-error: true
run: |
make build-go
- name: Log toolexec
run: |
cat toolexec.log
+1 -1
View File
@@ -22,7 +22,7 @@ func main() {
os.Exit(1)
}
f, err := os.OpenFile("toolexec.logger", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
f, err := os.OpenFile("toolexec.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
if err != nil {
log.Fatalf("error opening file: %v", err)
}