Skip to main content

Name

ec_log — log to the paniclog

Synopsis

ec_log { message }

Description

ec_log allows you to log arbitrary information to the paniclog. The log record will be prefixed with the script source filename and the line number at which the ec_log was executed. The message is logged at the CRITICAL level for the LOG1 subsystem. These messages will appear in the paniclog under the default Debug_Flags settings.

if envelope :domain :is "from" "good-guy.com" {
  ec_log "got mail from the good guys";
}

Note

This function cannot log messages longer than 1972 characters. Longer messages are truncated. If your requirements exceed this maximum use ec_log_file instead.

Was this page helpful?