Options

stdout in RapidMinder

magic_almagic_al Member Posts: 11 Contributor II
edited November 2018 in Help
How can I access the stdout in RapidMiner? I've a Script-Block with the following content:
System.out.println('hello world');
Where is 'hello world' printed out during execution? Or is there another way to display debugging information?
Tagged:

Answers

  • Options
    Marco_BoeckMarco_Boeck Administrator, Moderator, Employee, Member, University Professor Posts: 1,993 RM Engineering
    Hi,

    the log view will display the following:

    import java.util.logging.Level;
    import com.rapidminer.tools.LogService;

    LogService.getRoot().log(Level.WARNING, "Hello world");
    Regards,
    Marco
Sign In or Register to comment.