From 1de6c876d308f3679541217bcba4f9f618f79b10 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Thu, 9 Aug 2012 09:05:50 -0700 Subject: [PATCH] tweaks to '-h' output --- bin/bunyan | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/bin/bunyan b/bin/bunyan index 42bc653..c628ad1 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -136,6 +136,16 @@ function printHelp() { util.puts(" -h, --help print this help info and exit"); util.puts(" --version print version of this command and exit"); util.puts(""); + util.puts(" -l, --level LEVEL"); + util.puts(" Only show messages at or above the specified level."); + util.puts(" You can specify level *names* or numeric values."); + util.puts(" (See 'Log Levels' below.)"); + util.puts(" -c, --condition CONDITION"); + util.puts(" Run each log message through the condition"); + util.puts(" and only show those that resolve to a truish value."); + util.puts(" E.g. `-c 'pid == 123'`, `-c 'level == 50'`. You must"); + util.puts(" use the numeric values for filtering by level."); + util.puts(""); util.puts(" --color Colorize output. Defaults to try if output"); util.puts(" stream is a TTY."); util.puts(" --no-color Force no coloring (e.g. terminal doesn't support it)"); @@ -146,12 +156,6 @@ function printHelp() { util.puts(" json-N: JSON output, N-space indent, e.g. 'json-4'"); util.puts(" inspect: node.js `util.inspect` output"); util.puts(" -j shortcut for `-o json`"); - util.puts(" -l, --level LEVEL"); - util.puts(" Only show messages at or above the specified level."); - util.puts(" (See 'Log Levels' below.)"); - util.puts(" -c, --condition CONDITION"); - util.puts(" Run each log message through the condition"); - util.puts(" and only show those that resolve to a truish value."); util.puts(""); util.puts("Log Levels:"); util.puts(" Either numeric values or their associated strings are valid for the");