-
Hi! Not sure if this is an airframe issue, that's why I am asking here in the discussion-section. I am using Example: println("a1")
info("a2") The Intellij output for the test now only contains "a1". The "a2" appears at the start of the output of the next test. That seems to me like airframelog isn't flushing? I tried to flush the console after each test, but that doesn't seem to help: override def afterEach(): Unit = {
super.afterEach()
Console.flush()
} Is there a way to fix this? Am I using airframe-log wrong? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
airframe-log is sending logs to stderr by default, not stdout. Flushing stderr might work? |
Beta Was this translation helpful? Give feedback.
airframe-log is sending logs to stderr by default, not stdout. Flushing stderr might work?