Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 2 and Version 3 of code/doc/Output


Ignore:
Timestamp:
Aug 23, 2011, 10:59:08 AM (13 years ago)
Author:
landauf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/doc/Output

    v2 v3  
    1818Levels are used to define the meaning and the importance of an output message.
    1919
    20 See [http://www.orxonox.net/doxygen/_output_8h.html Output.h] for a list of all output levels.
     20See the [http://www.orxonox.net/doxygen/namespaceorxonox_1_1level.html doxygen page] or util/OutputDefinitions.h for a list of all output levels.
    2121
    2222Each level has a different meaning and a different priority. The {{{user_*}}} levels are used to provide the user with (sparse) information about the program's state. The {{{internal_*}}} levels are usually only visible in the log-file and are used by developers. The {{{verbose_*}}} levels are usually not visible (not even in the log-file) and are only activated in rare cases (debugging).
     
    2828Contexts give additional information about the part of the program that generated the output message. Contexts are basically just strings, which means they are identified by their name. It's possible to activate verbose output of only one context which allows debugging of specific parts of the program without being flooded with thousands of unrelated output messages.
    2929
    30 Most contexts are defined in [http://www.orxonox.net/doxygen/_output_8h.html Output.h], but there might exist more in different locations.
     30Most contexts are defined in [http://www.orxonox.net/doxygen/_output_definitions_8h.html util/OutputDefinitions.h], but there might exist more in different locations.
    3131
    3232== Examples ==