Changeset 21648 in vbox for trunk/include
- Timestamp:
- Jul 16, 2009 1:42:11 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50181
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/log.h
r21550 r21648 923 923 #define LogRelFlow(a) LogRelIt(LOG_REL_INSTANCE, RTLOGGRPFLAGS_FLOW, LOG_GROUP, a) 924 924 925 /** @def LogRelFlowFunc 926 * Release logging. Macro to log the execution flow inside C/C++ functions. 927 * 928 * Prepends the given log message with the function name followed by 929 * a semicolon and space. 930 * 931 * @param a Log message in format <tt>("string\n" [, args])</tt>. 932 */ 933 # define LogRelFlowFunc(a) \ 934 do { LogRelFlow((LOG_FN_FMT ": ", __PRETTY_FUNCTION__)); LogRelFlow(a); } while (0) 935 925 936 /** @def LogRelFunc 926 937 * Release logging. Prepends the given log message with the function name
Note:
See TracChangeset
for help on using the changeset viewer.