I'm pretty frustrated with how to make IDEA output anything from the tests to console. I've tried different versions of Scala, ScalaTest and IDEA - nothing helps. Currently my setup is: scala-2.10.0-snapshot, scalatest_2.9.1-1.6.1, idea 110.3. The project is managed by maven. Could anyone please help? I'm expecting to see something like that: http://www.scalatest.org/getting_started_with_feature_spec

link|improve this question

I don't know about Maven, but ScalaTest works fine in conjunction with SBT, with output to the SBT console window in IDEA (using the SBT plugin). Are you using the Maven plugin? – Luigi Plinge Oct 14 '11 at 17:34
Thanks. Since since version 11 Idea provides a decent support for FSC I stopped using SBT because it introduces several extra steps in workflow and I don't find its management approach any easier than Maven. Now I use Maven only and I run tests as usual Idea run configurations. Probably this issue is a bug of Idea's test runner adapter. Gonna post it on their tracker later – Nikita Volkov Oct 14 '11 at 18:43
println() works here, with IDEA 10.5.2. What's idea 110.3?? And what on Earth is scala-10.0-snapshot? Is that scala-2.10.0-snapshot? – Blaisorblade Oct 31 '11 at 1:05
idea 110.3 is an EAP release (see confluence.jetbrains.net/display/IDEADEV/IDEA+11+EAP), about the scala version - you're right thanks for pointing this one out – Nikita Volkov Oct 31 '11 at 2:26
feedback

2 Answers

up vote 2 down vote accepted

Looks like it's a problem of Idea Scala plugin. Later builds start putting some output into the console, but not everything one should expect. For latest releases of the plugin check out http://confluence.jetbrains.net/display/SCA/Scala+Plugin+Nightly+Builds+for+Nika

link|improve this answer
feedback

I've just been through the whole "getting punished by IDEA" thing and I have this solution for you...

Add Logback and slf4s to your POM:

<dependency>
    <groupId>com.weiglewilczek.slf4s</groupId>
    <artifactId>slf4s_${scala.version}</artifactId>
    <version>1.0.7</version>
</dependency>
<dependency>
    <groupId>ch.qos.logback</groupId>
    <artifactId>logback-core</artifactId>
    <version>0.9.30</version>
</dependency>
<dependency>
    <groupId>ch.qos.logback</groupId>
    <artifactId>logback-classic</artifactId>
    <version>0.9.30</version>
</dependency>

NOTES:
I've used ${scala.version} in the slf4s artifactId - make sure you have this defined or replace it with 2.9.1 or something like that.
Also - you'll need the scala-tools repo available for dependencies too - which I'm assuming you'll have as I think you need it to compile.

Then add a file called logback.xml to your resources folder containing this:

<configuration>

    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <encoder>
            <pattern>%date,%d{HH:mm:ss.SSS},%thread,%-5level,%logger{36},%line,%msg%n</pattern>
        </encoder>
    </appender>

    <root level="TRACE">
        <appender-ref ref="STDOUT"/>
    </root>
</configuration>

My pattern there is potentially a bit weird - it's actually from a file appender that spits it out as a CSV I can open and graph in Excel easily.

Then extend the trait Logging in your app like so:

import swing._
import com.weiglewilczek.slf4s.Logging

object App extends SwingApplication with Logging {

    override def startup(args: Array[String]) {

        logger.info("Starting init...")
    }
}

And the info message, "Starting init..." with a bunch of other stuff should appear in the console window.

Logback and slf4s are topics that I've linked to.

IMPORTANT AND AWESOME:

I can't remember what it's called but the logging methods you use to post messages all have signatures like info(message: => String) - as you can see in logger.scala.

This means the expression or block you pass to them will not get executed at all if the relevant level of logging isn't enabled in the config file.

So it only adds a method call and a flag-check to the code when it's turned off - which is pretty sweet imho :)

Hope that helps, Seth.

link|improve this answer
I've tried your suggestion and nothing changed. Was there anything else you probably forgot to mention? Also I don't quite get how it is in any way related to SwingApplication. – Nikita Volkov Oct 14 '11 at 13:08
I use the same technique for my tests as well - it solved the problem for me there too. – Seth Oct 16 '11 at 23:27
Hrmm - well this wasn't working for me previously and I thought I'd fixed it through logging but now System.out is working as well. The only change I can think of is that I shifted my IDEA project out of my source control dir into a completely external location - I don't change any IDEA settings except font and code style and stuff. Sorry that didn't work - do try disabling breakpoints and things like that - the "Any Exception" breakpoint in particular has been causing me many problems. – Seth Oct 17 '11 at 1:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.