Skip to content
This repository was archived by the owner on Aug 9, 2025. It is now read-only.

Commit 8801f0c

Browse files
committed
Printing command line arguments (#15)
1 parent 072abeb commit 8801f0c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

CPPCheckPlugin/ICodeAnalyzer.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ private void analyzerThreadFunc(string analyzerExePath, string arguments, bool b
6060
process.OutputDataReceived += new DataReceivedEventHandler(this.analyzerOutputHandler);
6161
process.ErrorDataReceived += new DataReceivedEventHandler(this.analyzerOutputHandler);
6262

63+
_outputPane.OutputString("Starting analyzer with arguments: " + arguments + "\n");
64+
6365
var timer = Stopwatch.StartNew();
6466
// Start the process.
6567
process.Start();

0 commit comments

Comments
 (0)