Changeset 55989 in vbox
- Timestamp:
- May 20, 2015 11:43:24 PM (9 years ago)
- File:
-
- 1 edited
-
trunk/include/iprt/log.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/log.h
r55988 r55989 398 398 /** Enabled. */ 399 399 RTLOGGRPFLAGS_ENABLED = 0x0001, 400 /** Flow logging. */ 401 RTLOGGRPFLAGS_FLOW = 0x0002, 402 /** Warnings logging. */ 403 RTLOGGRPFLAGS_WARN = 0x0004, 404 /* 0x0008 for later. */ 400 405 /** Level 1 logging. */ 401 RTLOGGRPFLAGS_LEVEL_1 = 0x00 02,406 RTLOGGRPFLAGS_LEVEL_1 = 0x0010, 402 407 /** Level 2 logging. */ 403 RTLOGGRPFLAGS_LEVEL_2 = 0x00 04,408 RTLOGGRPFLAGS_LEVEL_2 = 0x0020, 404 409 /** Level 3 logging. */ 405 RTLOGGRPFLAGS_LEVEL_3 = 0x00 08,410 RTLOGGRPFLAGS_LEVEL_3 = 0x0040, 406 411 /** Level 4 logging. */ 407 RTLOGGRPFLAGS_LEVEL_4 = 0x00 10,412 RTLOGGRPFLAGS_LEVEL_4 = 0x0080, 408 413 /** Level 5 logging. */ 409 RTLOGGRPFLAGS_LEVEL_5 = 0x0 020,414 RTLOGGRPFLAGS_LEVEL_5 = 0x0100, 410 415 /** Level 6 logging. */ 411 RTLOGGRPFLAGS_LEVEL_6 = 0x0 040,416 RTLOGGRPFLAGS_LEVEL_6 = 0x0200, 412 417 /** Level 7 logging. */ 413 RTLOGGRPFLAGS_LEVEL_7 = 0x0 080,418 RTLOGGRPFLAGS_LEVEL_7 = 0x0400, 414 419 /** Level 8 logging. */ 415 RTLOGGRPFLAGS_LEVEL_8 = 0x0 100,420 RTLOGGRPFLAGS_LEVEL_8 = 0x0800, 416 421 /** Level 9 logging. */ 417 RTLOGGRPFLAGS_LEVEL_9 = 0x 0200,422 RTLOGGRPFLAGS_LEVEL_9 = 0x1000, 418 423 /** Level 10 logging. */ 419 RTLOGGRPFLAGS_LEVEL_10 = 0x 0400,424 RTLOGGRPFLAGS_LEVEL_10 = 0x2000, 420 425 /** Level 11 logging. */ 421 RTLOGGRPFLAGS_LEVEL_11 = 0x 0800,426 RTLOGGRPFLAGS_LEVEL_11 = 0x4000, 422 427 /** 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, 428 429 429 430 /** Restrict the number of log entries. */
Note:
See TracChangeset
for help on using the changeset viewer.

