replace accidental use of log with klog
parent
b90a782691
commit
0d9f148411
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue