Changes between Version 17 and Version 18 of pps/tutorial_basic
- Timestamp:
- Aug 22, 2011, 1:56:53 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
pps/tutorial_basic
v17 v18 101 101 102 102 === Logging messages === 103 Stay in the ''XMLPort()'' function and add a statement after the SUPER call to display a log message with output level 3:103 Stay in the ''XMLPort()'' function and add a statement after the SUPER call to display a log message with output level {{{user_info}}}: 104 104 {{{ 105 COUT(3) << "My name is Bond. James Bond." << std::endl;105 orxout(user_info) << "My name is Bond. James Bond." << endl; 106 106 }}} 107 107 Your job is to make the message sound meaningful for this particular ''XMLPort()'' function.