Changes in src/info.cpp [8725ed:a67d19]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/info.cpp
r8725ed ra67d19 21 21 verbosity++; 22 22 FunctionName = msg; 23 Log() << Verbose(0) << "Begin of " << FunctionName << endl;23 DoLog(0) && (Log() << Verbose(0) << "Begin of " << FunctionName << endl); 24 24 }; 25 25 … … 28 28 */ 29 29 Info::~Info() { 30 Log() << Verbose(0) << "End of " << FunctionName << endl;30 DoLog(0) && (Log() << Verbose(0) << "End of " << FunctionName << endl); 31 31 verbosity--; 32 32 }
Note:
See TracChangeset
for help on using the changeset viewer.