QUOTE:
How can I either turn off the logging or tune it to not record the key strokes?
If you look near the top of $GOGLOBAL_ROOT/bin/startXgo.sh file, you will see something like this:
| Code: |
if [ ! -d ${HOME}/.graphon/session-logs ]
then
mkdir -p ${HOME}/.graphon/session-logs
fi
if [ -d ${HOME}/.graphon/session-logs ]
then
tmp_logfile=${HOME}/.graphon/session-logs/goglobal-tmp.$$
else
tmp_logfile=/dev/null
fi
# redirect output to the (temporary) error file
# evgenyr: setting the tmp_logfile variable to /dev/null here will disable logging
exec 2> $tmp_logfile
exec 1>&2
|
If you set the
variable to "/dev/null" where the "evgenyr: comment" indicates, logging will be disabled, albeit for all users on the machine on which you make this modification. For applications that are started through XDM, the file to edit is $GOGLOBAL_ROOT/bin/startXDM.sh
I am not aware of any user-tunable parameters to adjust what Xgo logs.
Hope this helps
--
Evgeny Roubinchtein