Here is a question from Tayouo Erick Ervee:
Hi Mr. Gage,
Need a help please. We are linked Question Server with Moodle. When try to open a question on Moodle. the question is displayed with the question detail on bottom. How to hide this.
-----------
In the file: https://github.com/mgage/opaque_server/blob/master/conf/opaqueserver.apache-config.dist
You'll find
# define debugging parameters |
|
$OpaqueServer::Constants::displayDebuggingData = 1; |
$OpaqueServer::Constants::logDebuggingData =1; |
$OpaqueServer::Constants::logFile = "$root_dir/logs/sessions.log"; |
You want to set these configurations in your copy of
conf/opaqueserver.apache-config to 0.
Or at least set displayDebuggingData=0 .
This affects code around lines 45 and again most importantly around
lines 611 of lib/OpaqueServer.pm
https://github.com/mgage/opaque_server/blob/master/lib/OpaqueServer.pm#L611
where the debugging information is actually printed out.