Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 3 and Version 4 of code/howto/Output


Ignore:
Timestamp:
Apr 12, 2017, 11:48:00 PM (7 years ago)
Author:
landauf
Comment:

fixed links

Legend:

Unmodified
Added
Removed
Modified
  • code/howto/Output

    v3 v4  
    11= HowTo: Output =
    2 [[TracNav(TracNav/TOC_Development)]]
    32
    4 First you have to include [wiki:Output Output.h]:
     3First you have to include [wiki:doc/Output Output.h]:
    54{{{
    65#include "util/Output.h"
     
    1413Every 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.
    1514
    16 See [wiki:Output] for more information about levels, contexts, and the general usage of orxout().
     15See [wiki:doc/Output] for more information about levels, contexts, and the general usage of orxout().