"Disabling rapidminer initialization outputs in java console"

User: "ml_guy"
New Altair Community Member
Updated by Jocelyn
How to disable all the initialization and warnings using rapidminer java API?

I would like to let my program show ONLY the outputs written in my code via System.out.println() calls.

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "land"
    New Altair Community Member
    Hi,
    you could increase the verbosity level of the global logger:

    LogService.getGlobal().setVerbosityLevel(LogService.ERROR);
    RapidMiner.init();
    Greetings,
      Sebastian
    User: "ml_guy"
    New Altair Community Member
    OP
    Thanks Sabestian.

    You rocks...  :)