Commit 23791ee1 authored by Shenghou Ma's avatar Shenghou Ma Committed by Minux Ma

cmd/compile: set log prefix and suppress date

Fixes #13320.

Change-Id: I3a96a6707982629caf89656c479d096891783328
Reviewed-on: https://go-review.googlesource.com/17050Reviewed-by: 's avatarRobert Griesemer <gri@golang.org>
parent 8d31a86a
......@@ -13,10 +13,15 @@ import (
"cmd/compile/internal/x86"
"cmd/internal/obj"
"fmt"
"log"
"os"
)
func main() {
// disable timestamps for reproducible output
log.SetFlags(0)
log.SetPrefix("compile: ")
switch obj.Getgoarch() {
default:
fmt.Fprintf(os.Stderr, "compile: unknown architecture %q\n", obj.Getgoarch())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment