VirtualBox

Changeset 55989 in vbox


Ignore:
Timestamp:
May 20, 2015 11:43:24 PM (9 years ago)
Author:
vboxsync
Message:

iprt/log.h: Make RTLOGGRPFLAGS_FLOW and RTLOGGRPFLAGS_WARN be in the byte immediate range.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/log.h

    r55988 r55989  
    398398    /** Enabled. */
    399399    RTLOGGRPFLAGS_ENABLED      = 0x0001,
     400    /** Flow logging. */
     401    RTLOGGRPFLAGS_FLOW         = 0x0002,
     402    /** Warnings logging. */
     403    RTLOGGRPFLAGS_WARN         = 0x0004,
     404    /* 0x0008 for later. */
    400405    /** Level 1 logging. */
    401     RTLOGGRPFLAGS_LEVEL_1      = 0x0002,
     406    RTLOGGRPFLAGS_LEVEL_1      = 0x0010,
    402407    /** Level 2 logging. */
    403     RTLOGGRPFLAGS_LEVEL_2      = 0x0004,
     408    RTLOGGRPFLAGS_LEVEL_2      = 0x0020,
    404409    /** Level 3 logging. */
    405     RTLOGGRPFLAGS_LEVEL_3      = 0x0008,
     410    RTLOGGRPFLAGS_LEVEL_3      = 0x0040,
    406411    /** Level 4 logging. */
    407     RTLOGGRPFLAGS_LEVEL_4      = 0x0010,
     412    RTLOGGRPFLAGS_LEVEL_4      = 0x0080,
    408413    /** Level 5 logging. */
    409     RTLOGGRPFLAGS_LEVEL_5      = 0x0020,
     414    RTLOGGRPFLAGS_LEVEL_5      = 0x0100,
    410415    /** Level 6 logging. */
    411     RTLOGGRPFLAGS_LEVEL_6      = 0x0040,
     416    RTLOGGRPFLAGS_LEVEL_6      = 0x0200,
    412417    /** Level 7 logging. */
    413     RTLOGGRPFLAGS_LEVEL_7      = 0x0080,
     418    RTLOGGRPFLAGS_LEVEL_7      = 0x0400,
    414419    /** Level 8 logging. */
    415     RTLOGGRPFLAGS_LEVEL_8      = 0x0100,
     420    RTLOGGRPFLAGS_LEVEL_8      = 0x0800,
    416421    /** Level 9 logging. */
    417     RTLOGGRPFLAGS_LEVEL_9      = 0x0200,
     422    RTLOGGRPFLAGS_LEVEL_9      = 0x1000,
    418423    /** Level 10 logging. */
    419     RTLOGGRPFLAGS_LEVEL_10     = 0x0400,
     424    RTLOGGRPFLAGS_LEVEL_10     = 0x2000,
    420425    /** Level 11 logging. */
    421     RTLOGGRPFLAGS_LEVEL_11     = 0x0800,
     426    RTLOGGRPFLAGS_LEVEL_11     = 0x4000,
    422427    /** Level 12 logging. */
    423     RTLOGGRPFLAGS_LEVEL_12     = 0x1000,
    424     /** Flow logging. */
    425     RTLOGGRPFLAGS_FLOW         = 0x2000,
    426     /** Warnings logging. */
    427     RTLOGGRPFLAGS_WARN         = 0x4000,
     428    RTLOGGRPFLAGS_LEVEL_12     = 0x8000,
    428429
    429430    /** Restrict the number of log entries. */
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette