Skip to content

Commit

Permalink
helper text
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-613 committed Oct 19, 2023
1 parent 67a28ba commit c092f51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ Usage: PrettyDump [host:port] [message-vpn] [username] [password] [topics|q:queu
- If 'default' client-username is enabled in VPN, you can use any username
- Subscribing options, one of:
- comma-separated list of Direct topic subscriptions
- "q:queueName" to consume from queue
- "b:queueName" to browse a queue
- q:queueName to consume from queue
- b:queueName to browse a queue
- Can browse all messages, or specific messages by ID
- Optional indent: integer, default=4; specifying 0 compresses payload formatting
- Optional indent: integer, default = 4 spaces; specifying 0 compresses payload formatting
- Use negative indent value (column width) for one-line topic & payload only
- Use negative zero ("-0") for only topic, no payload
- Default charset is UTF-8. Override by setting: export PRETTY_DUMP_OPTS=-Dcharset=whatever
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/solace/labs/aaron/PrettyDump.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ public static void main(String... args) throws JCSMPException, IOException, Inte
System.out.println(" - If 'default' client-username is enabled in VPN, you can use any username");
System.out.println(" - Subscribing options, one of:");
System.out.println(" - comma-separated list of Direct topic subscriptions");
System.out.println(" - \"q:queueName\" to consume from queue");
System.out.println(" - \"b:queueName\" to browse a queue");
System.out.println(" - q:queueName to consume from queue");
System.out.println(" - b:queueName to browse a queue");
System.out.println(" - Can browse all messages, or specific messages by ID");
System.out.println(" - Optional indent: integer, default=4; specifying 0 compresses payload formatting");
System.out.println(" - Optional indent: integer, default = 4 spaces; specifying 0 compresses payload formatting");
System.out.println(" - Use negative indent value (column width) for one-line topic & payload only");
System.out.println(" - Use negative zero (\"-0\") for only topic, no payload");
System.out.println(" - Default charset is UTF-8. Override by setting: export PRETTY_DUMP_OPTS=-Dcharset=whatever");
Expand Down

0 comments on commit c092f51

Please sign in to comment.