summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-12-10 03:01:05 +0000
committergVisor bot <gvisor-bot@google.com>2020-12-10 03:01:05 +0000
commit9392e7b8a71f77ec9b43a2e3cb86aa3d7dc7e506 (patch)
treee68f5f4f2bbfffe40465ddf7fd6aaf3989449704
parent23f464469bb7ccd79928a7a749219336b7bcb2c0 (diff)
parent65a2242db409e7f4aeef04a01eb4f89699557866 (diff)
Merge release-20201130.0-75-g65a2242db (automated)
-rw-r--r--runsc/cli/main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/runsc/cli/main.go b/runsc/cli/main.go
index bca015db5..cc3752e8d 100644
--- a/runsc/cli/main.go
+++ b/runsc/cli/main.go
@@ -22,6 +22,7 @@ import (
"io/ioutil"
"os"
"os/signal"
+ "runtime"
"syscall"
"time"
@@ -207,6 +208,8 @@ func Main(version string) {
log.Infof("***************************")
log.Infof("Args: %s", os.Args)
log.Infof("Version %s", version)
+ log.Infof("GOOS: %s", runtime.GOOS)
+ log.Infof("GOARCH: %s", runtime.GOARCH)
log.Infof("PID: %d", os.Getpid())
log.Infof("UID: %d, GID: %d", os.Getuid(), os.Getgid())
log.Infof("Configuration:")