Changes between Version 3 and Version 4 of code/howto/Output
- Timestamp:
- Apr 12, 2017, 11:48:00 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/howto/Output
v3 v4 1 1 = HowTo: Output = 2 [[TracNav(TracNav/TOC_Development)]]3 2 4 First you have to include [wiki: Output Output.h]:3 First you have to include [wiki:doc/Output Output.h]: 5 4 {{{ 6 5 #include "util/Output.h" … … 14 13 Every output through orxout() will be sent to the console, the logfile and the in-game-shell. There is a [wiki:howto/ConfigFile configurable] maximal output level for every device. If the level of your output is > the maximal level of a device, it wont be displayed. But don't use orxout(debug_output) all the time because the user SHOULD be able to deactivate your output unless it's REALLY important. 15 14 16 See [wiki: Output] for more information about levels, contexts, and the general usage of orxout().15 See [wiki:doc/Output] for more information about levels, contexts, and the general usage of orxout().