Skip to content

Commit e78d901

Browse files
committed
Verbose output by default
1 parent a5f56fe commit e78d901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/com/tschuchort/compiletesting/KotlinCompilation.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class KotlinCompilation {
7171
* Helpful information (if [verbose] = true) and the compiler
7272
* system output will be written to this stream
7373
*/
74-
var messageOutputStream: OutputStream = NullStream
74+
var messageOutputStream: OutputStream = System.out
7575

7676
/** Inherit classpath from calling process */
7777
var inheritClassPath: Boolean = false
@@ -83,7 +83,7 @@ class KotlinCompilation {
8383
var correctErrorTypes: Boolean = true
8484

8585
/** Print verbose logging info */
86-
var verbose: Boolean = false
86+
var verbose: Boolean = true
8787

8888
/** Suppress all warnings */
8989
var suppressWarnings: Boolean = false

0 commit comments

Comments
 (0)