florin-akermann commented on a change in pull request #11456: URL: https://github.com/apache/kafka/pull/11456#discussion_r762368754
########## File path: core/src/main/scala/kafka/tools/ConsoleProducer.scala ########## @@ -208,9 +213,22 @@ object ConsoleProducer { .defaultsTo(1024*100) val propertyOpt = parser.accepts("property", "A mechanism to pass user-defined properties in the form key=value to the message reader. " + "This allows custom configuration for a user-defined message reader. Default properties include:\n" + - "\tparse.key=true|false\n" + - "\tkey.separator=<key.separator>\n" + - "\tignore.error=true|false") + "\tparse.key=false\n" + + "\tparse.headers=false\n" + + "\tignore.error=false\n" + + "Default parsing pattern when:\n" + + "\tparse.headers=true & parse.key=true:\n" + + "\t \"h1:v1,h2...\\tkey\\tvalue\"\n" + + "\tparse.headers=false & parse.key=true:\n" + + "\t \"key\\tvalue\"\n" + + "\tparse.headers=true & parse.key=false:\n" + + "\t \"h1:v1,h2...\\tvalue\"\n" + + "Customize pattern via (defaults shown)\n" + + "\tkey.separator=\\t\n" + + "\theaders.delimiter=\\t\n" + + "\theaders.separator=,\n" + + "\theaders.key.separator=:" + ) Review comment: Adjusted -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org