Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.

Commit 7341ef2

Browse files
committed
logging: use stderr by default
Signed-off-by: Alexander Bezzubov <[email protected]>
1 parent 4d36047 commit 7341ef2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scala/org/bblfsh/client/v2/libuast/Libuast.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ object Libuast {
1414
final var loaded = false
1515

1616
if (!loaded) {
17-
println("Loading native libscalauast")
17+
System.err.println("Loading native libscalauast")
1818
Libuast.loadBinaryLib("libscalauast")
1919
}
2020

src/test/scala/org/bblfsh/client/v2/FilterManagedTest.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class FilterManagedTest extends FlatSpec
1919
))
2020

2121
override def beforeAll() = {
22-
println(s"Libuast.loaded: ${Libuast.loaded}")
22+
System.err.println(s"Libuast.loaded: ${Libuast.loaded}")
2323
// to load native JNI lib \wo the full client
2424
}
2525

0 commit comments

Comments
 (0)