Information
Setting the CRONLOG parameter to YES in the /etc/default/cron file causes information to be logged for every cron job that gets executed on the system. This setting is the default for Solaris.
Solution
Perform the following to implement the recommended state-
cd /etc/default
awk '/CRONLOG=/ { $1 = 'CRONLOG=YES' }; { print }' cron > cron.new
mv cron.new cron
pkgchk -f -n -p /etc/default/cron
chown root:root /var/cron/log
chmod go-rwx /var/cron/log