Browse Source

use stdlog

pull/8120/head
tycho garen 3 years ago
parent
commit
d2d32a47b7
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      test/e2e/generator/main.go

+ 2
- 1
test/e2e/generator/main.go View File

@ -4,6 +4,7 @@ package main
import (
"context"
"fmt"
stdlog "log"
"math/rand"
"os"
"path/filepath"
@ -24,7 +25,7 @@ func main() {
cli, err := NewCLI()
if err != nil {
panic(err)
stdlog.Fatal(err)
}
cli.Run(ctx)


Loading…
Cancel
Save