"Disabling rapidminer initialization outputs in java console"

ml_guyml_guy Member Posts: 11 Contributor II
edited May 2019 in Help
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.
Tagged:

Answers

  • landland RapidMiner Certified Analyst, RapidMiner Certified Expert, Member Posts: 2,531 Unicorn
    Hi,
    you could increase the verbosity level of the global logger:

    LogService.getGlobal().setVerbosityLevel(LogService.ERROR);
    RapidMiner.init();
    Greetings,
      Sebastian
  • ml_guyml_guy Member Posts: 11 Contributor II
    Thanks Sabestian.

    You rocks...  :)
Sign In or Register to comment.