Usage: ${command} [OPTION...] [APP_ID]
Display application logs from a Palm device.

Options:
-d, --device=DEVICE           # specify DEVICE to use
-l, --list                    # list the installed applications
-f, --follow                  # follow the log output (use Ctrl-C to terminate)
    --system-log-level=LEVEL  # set the system log level
    --version                 # display version info and exit
    --help                    # display this help and exit

APP_ID is the id of the application for which logs are shown.

DEVICE is a unique device id, "usb" for any usb-connected device, or "tcp" for
the emulator (must be running). If not specified, the first device found is used.

LEVEL is one of {error,warning,info}. For production devices, the default level
is error. To enable more detailed logging, use warning or info.

Examples:

# Display logs for app
${command} com.example.app

# Follow logs for app
${command} -f com.example.app

# List applications on default device
${command} -l

# List applications on usb-connected device
${command} -d usb -l

# List applications on emulator
${command} -d tcp -l
