Skip to content

Commit 13c212b

Browse files
committed
chore: dump stderr as well
1 parent 5658672 commit 13c212b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/github/xepozz/php_dump/services/CustomTreeDumperService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CustomTreeDumperService(var project: Project) : DumperServiceInterface {
3030

3131
val result = CustomDumpResult()
3232

33-
result.raw = capture.output.stdout
33+
result.raw = capture.output.stdout + "\n" + capture.output.stderr
3434
// println("jsonString: $jsonString")
3535

3636
try {

0 commit comments

Comments
 (0)