From e8bd33ae287501eb3b8d37cee02c6112a1c686f6 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 15 Jun 2021 17:49:56 -0700 Subject: [PATCH] runc --help: improve log options description Signed-off-by: Kir Kolyshkin --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index db29a8c19..45652ab32 100644 --- a/main.go +++ b/main.go @@ -81,17 +81,17 @@ func main() { app.Flags = []cli.Flag{ cli.BoolFlag{ Name: "debug", - Usage: "enable debug output for logging", + Usage: "enable debug logging", }, cli.StringFlag{ Name: "log", Value: "", - Usage: "set the log file path where internal debug information is written", + Usage: "set the log file to write runc logs to (default is '/dev/stderr')", }, cli.StringFlag{ Name: "log-format", Value: "text", - Usage: "set the format used by logs ('text' (default), or 'json')", + Usage: "set the log format ('text' (default), or 'json')", }, cli.StringFlag{ Name: "root",