Comments are not displayed in the Cmd results
See original GitHub issueDescribe the bug
I want to export the results from Codechecker Server into JSON format. For doing that, I am using cmd results
command as:
CodeChecker cmd results smatch -o json 2>/dev/null | python -m json.tool > smatch_out.json
The output file( smatch_out.json
) does not properly export the comment on bugs in Reports stored in Codechecker server
. Instead of displaying the comment, only an empty string(""
) is displayed.
Kindly provide pointers to solve this issue
Issue Analytics
- State:
- Created 3 years ago
- Comments:13 (8 by maintainers)
Top Results From Across the Web
How do I do comments at a Windows command prompt?
The command REM comment will not print any output to the screen. For a live demonstration, open a Command Prompt and run echo...
Read more >How do I comment on the Windows command line?
A comment is produced using the REM command which is short for "Remark". REM Comment here.
Read more >Batch Script - Comments - Tutorialspoint
Comments Using the Rem Statement There are two ways to create comments in Batch Script; one is via the Rem command. Any text...
Read more >Rem - Comment - Windows CMD - SS64.com
A REM comment is a documented command that may be used almost anywhere within a command line. C:\> Echo This will work REM...
Read more >Matlab command window doesn't work - MathWorks
Matlab command window doesn't work. ... Show older comments ... I do not use Microsoft One drive and the command prompt doesn't say...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@jay24rajput You have to use the
--details
options:CodeChecker cmd results smatch -o json --details
Thanks a ton, @csordasmarton! We have resolved the issue!