Add log prefix for better clarity

This commit is contained in:
praveensastry
2019-08-22 22:52:43 +10:00
parent 73985c6545
commit 7672eaae25
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -237,9 +237,9 @@ func (l LeakMode) String() string {
case NoLeakChecking:
return "disabled"
case LeaksLogWarning:
return "warning"
return "log-names"
case LeaksLogTraces:
return "traces"
return "log-traces"
default:
panic(fmt.Sprintf("Invalid leakmode: %d", l))
}
+2 -2
View File
@@ -118,9 +118,9 @@ func MakeRefsLeakMode(s string) (refs.LeakMode, error) {
switch strings.ToLower(s) {
case "disabled":
return refs.NoLeakChecking, nil
case "warning":
case "log-names":
return refs.LeaksLogWarning, nil
case "traces":
case "log-traces":
return refs.LeaksLogTraces, nil
default:
return 0, fmt.Errorf("invalid refs leakmode %q", s)
+1 -1
View File
@@ -73,7 +73,7 @@ var (
netRaw = flag.Bool("net-raw", false, "enable raw sockets. When false, raw sockets are disabled by removing CAP_NET_RAW from containers (`runsc exec` will still be able to utilize raw sockets). Raw sockets allow malicious containers to craft packets and potentially attack the network.")
numNetworkChannels = flag.Int("num-network-channels", 1, "number of underlying channels(FDs) to use for network link endpoints.")
rootless = flag.Bool("rootless", false, "it allows the sandbox to be started with a user that is not root. Sandbox and Gofer processes may run with same privileges as current user.")
referenceLeakMode = flag.String("ref-leak-mode", "disabled", "sets reference leak check mode: disabled (default), warning, traces.")
referenceLeakMode = flag.String("ref-leak-mode", "disabled", "sets reference leak check mode: disabled (default), log-names, log-traces.")
// Test flags, not to be used outside tests, ever.
testOnlyAllowRunAsCurrentUserWithoutChroot = flag.Bool("TESTONLY-unsafe-nonroot", false, "TEST ONLY; do not ever use! This skips many security measures that isolate the host from the sandbox.")