JASS 4.2 environment variables not working
I have migrated from JASS 0.3.11 to JASS 4.2. The JASS environment vatiables do not seem to work in the new version. For example, the variables JASS_LOG_FAILURE and JASS_LOG_NOTICE were by default set in the old version and NOTE/FAIL/PASS messages were generated when an audit was performed. With the new version, something seems broken or not set correctly or OVERWRITTING that setting in - but I don't see where. Even if I set these variable in jass-execute, they still do not work. Please help!!
Thank you.
[593 byte] By [
cax689] at [2007-11-25 22:35:05]

# 1
ok, I have narrowed down the environment variables that control the logging:
JASS_LOG_ERROR
This variable controls the behavior of the logError function.
JASS_LOG_FAILURE
This variable controls the behavior of the logFailure function
JASS_LOG_NOTICE
This variable controls the behavior of the logNotice function
JASS_LOG_SUCCESS
This variable controls the behavior of the logSuccess function
JASS_LOG_WARNING
This variable controls the behavior of the logWarning function
I have confirmed that they are set to "1" during a JASS run using an echo command. However, the output does not include these messages.
Here is one example:
disable-autoinst.aud (JASS 0.3.11)
# The following checks are used to determine if the software is configured.
# The following is the vulnerability total for this audit script.
[FAIL] Script Total: 2 Errors
disable-autoinst.aud (JASS 4.2)
# /net/mica/jet/jass-execute-single -a -c disable-autoinst.aud
# The following checks are used to determine if the software is configured.
[FAIL] Start Script /etc/rc2.d/S30sysid.net was found.
[FAIL] Start Script /etc/rc2.d/S71sysid.sys was found.
[PASS] Start Script /etc/rc2.d/S72autoinstall was not found.
# The following is the vulnerability total for this audit script.
[FAIL] Audit Check Total : 2 Error(s)
Is anyone using JASS 4.2 AND successfully getting these messages?