Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| language:debugging [2023/04/09 23:15] – created rajit | language:debugging [2025/05/18 19:49] (current) – [Assertions] rajit | ||
|---|---|---|---|
| Line 23: | Line 23: | ||
| bool b; | bool b; | ||
| - | { a !== b : "a and b are connected | + | { a !== b : "a and b are connected!" |
| a = b; | a = b; | ||
| { a === b : "a and b are not connected!" | { a === b : "a and b are not connected!" | ||
| - | { a !== b : "a and b are connected | + | { a !== b : "a and b are connected!" |
| </ | </ | ||
| Line 33: | Line 33: | ||
| ===== Log Messages ===== | ===== Log Messages ===== | ||
| + | ACT supports debug log messages in verbose mode. A debug log statement can be written as: | ||
| + | |||
| + | <code act> | ||
| + | ... | ||
| + | ${ " | ||
| + | ... | ||
| + | </ | ||
| + | When this construct is encountered, | ||
| + | |||
| + | A log message can include multiple values, | ||
| + | <code act> | ||
| + | ${ " | ||
| + | </ | ||