We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f56fe commit e78d901Copy full SHA for e78d901
src/main/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt
@@ -71,7 +71,7 @@ class KotlinCompilation {
71
* Helpful information (if [verbose] = true) and the compiler
72
* system output will be written to this stream
73
*/
74
- var messageOutputStream: OutputStream = NullStream
+ var messageOutputStream: OutputStream = System.out
75
76
/** Inherit classpath from calling process */
77
var inheritClassPath: Boolean = false
@@ -83,7 +83,7 @@ class KotlinCompilation {
83
var correctErrorTypes: Boolean = true
84
85
/** Print verbose logging info */
86
- var verbose: Boolean = false
+ var verbose: Boolean = true
87
88
/** Suppress all warnings */
89
var suppressWarnings: Boolean = false
0 commit comments