The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FleetConf::Agent::Parser::Stmt::LOG - LOG command

SYNOPSIS

  NAME Some-Agent
  MNEMONIC foo
  WORKFLOW Null

  LOG DEBUG4 Debug4 message.
  LOG DEBUG3 Debug3 message.
  LOG DEBUG2 Debug2 message.
  LOG DEBUG1 Debug1 message.
  LOG DEBUG Debug message.
  LOG INFO Info message.
  LOG NOTICE Notice message.
  LOG WARNING Warning message.
  LOG ERROR Error message.
  LOG ALERT Alert message.
  LOG EMERGENCY Emergency message.

DESCRIPTION

The LOG command allows the agent to log messages to the workflow (and possibly to standard error) during the run phase.

The BNF for the LOG command is as follows:

  agent_command +::= log_command

  log_command ::= "LOG" log_level bare_string EOL

  log_level ::= "DEBUG1" | "DEBUG2" | "DEBUG3" | "DEBUG4" | "DEBUG"
              | "INFO" | "NOTICE" | "WARNING" | "ERROR" | "ALERT" | "EMERGENCY"

AUTHOR

Andrew Sterling Hanenkamp, <hanenkamp@users.sourceforge.net>

COPYRIGHT AND LICENSE

Copyright 2005 Andrew Sterling Hanenkamp. All Rights Reserved.

FleetConf is distributed and licensed under the same terms as Perl itself.