elhaz daemon logs¶
Synopsis¶
elhaz daemon logs [OPTIONS]
Description¶
Print daemon log output from the log file at ~/.elhaz/logs/daemon.log (or
the path set by --logging-path). Defaults to the last 50 lines.
Options¶
--tail,-tINTEGERShow the last N lines. Default:
50. Pass0to print the entire file.--head,-hINTEGERShow the first N lines. If set,
--tailis ignored.--helpShow help message and exit.
Examples¶
Show the last 50 lines (default):
elhaz daemon logs
Show the last 100 lines:
elhaz daemon logs -t 100
Show the first 20 lines:
elhaz daemon logs --head 20
Print the entire log file:
elhaz daemon logs -t 0