replace accidental use of log with klog

pull/16693/head
Steven Powell 2023-06-13 08:43:59 -07:00
parent b90a782691
commit 0d9f148411
1 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@ import (
"crypto/sha256" "crypto/sha256"
"fmt" "fmt"
"io" "io"
"log"
"net/http" "net/http"
"os" "os"
"strings" "strings"
@ -91,7 +90,7 @@ func main() {
update.Apply(schema, data) update.Apply(schema, data)
if err := updateHashFiles(stable.Commit); err != nil { if err := updateHashFiles(stable.Commit); err != nil {
log.Fatalf("failed to update hash files: %v", err) klog.Fatalf("failed to update hash files: %v", err)
} }
} }