Previous Page | Next Page

Logger and Appender Object Language Reference

INFO Method



Logs an INFO message if the specified logger accepts INFO messages.
Applies to: logger object

Syntax
Arguments
Details
Example
See Also

Syntax

object.INFO ("message");


Arguments

object

specifies the name of the logger object.

message

specifies the message to write at the info level.

Requirement: The message must be enclosed in double quotation marks.

Details

The info level designates informational events that highlight the progress of an application at a coarse-grained level. For more information about logging levels, see Logging Thresholds.


Example

The following example creates an info message for the logger.

data _null_;
   if _n_ = 1 then do;
      declare logger logobj("testlog");
   end;
   logobj.info("Test info message");
run;


See Also

Method:

DEBUG Method

ERROR Method

FATAL Method

TRACE Method

WARN Method

Previous Page | Next Page | Top of Page