The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Logging on the rapidminer server
Just playing around as a newbie with the rapidminer server.
I have some questions on logging.
When I run a process on the sever, I get less logging then when running locally.
For instance :
When I run a process with an exeute script step, I do not see any operator.getLog().log("whatever") entries.
Also when using the Print to Console operator, I do not see any of those results in the Log.
Any thoughts about this ?
I was also wondering about how to configure a relative path in the process attrbitue (logfile).
And then specifically, relative to the process definition location.
I have some questions on logging.
When I run a process on the sever, I get less logging then when running locally.
For instance :
When I run a process with an exeute script step, I do not see any operator.getLog().log("whatever") entries.
Also when using the Print to Console operator, I do not see any of those results in the Log.
Any thoughts about this ?
I was also wondering about how to configure a relative path in the process attrbitue (logfile).
And then specifically, relative to the process definition location.
Tagged:
0
Best Answer
-
mmichel Employee-RapidMiner, Member Posts: 129 RM EngineeringHi Artm,
have you tried usingoperator.getLogger().info("foo")
This will re-use the logger of the process instead of creating a new one.
Cheers
Marcel
6
Answers
Dortmund, Germany
Locally it (only) says :
Locally
Server
Find attached, nothing special I'd say.
Actually that made the server log foo.
Thanks for this.