How to: |
The EDAPRINT function enables you to add a text message into the EDAPRINT log file and assign it a message type. The returned value of the function is zero (0).
EDAPRINT(message_type, 'message')
where:
Keyword
Can be one of the following message types.
Is the message to insert, enclosed in single quotation marks.
The following procedure inserts three messages in the EDAPRINT log file.
-SET &I = EDAPRINT(I, 'This is a test informational message'); -SET &W = EDAPRINT(W, 'This is a test warning message'); -SET &E = EDAPRINT(E, 'This is a test error message');
The output is shown in the following image.
EDAPRINT(message_type, 'message')
where:
Keyword
Can be one of the following message types.
Is the message to insert, enclosed in single quotation marks.
The following procedure inserts three messages in the EDAPRINT log file.
-SET &I = EDAPRINT(I, 'This is a test informational message'); -SET &W = EDAPRINT(W, 'This is a test warning message'); -SET &E = EDAPRINT(E, 'This is a test error message');
The output is shown in the following image.